mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-12 05:58:34 +00:00
Removed some unused methods
This commit is contained in:
parent
977f7d4b79
commit
f2f2540741
@ -42,14 +42,6 @@ namespace OSCADSharp.Bindings
|
||||
this.bindings.Add<BindableBoolean>(this, property, stringifiedVar);
|
||||
}
|
||||
|
||||
public BindableBoolean Clone()
|
||||
{
|
||||
var clone = new BindableBoolean(this.boundProperty);
|
||||
clone.bindings = this.bindings;
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return this.bindings.Get(this.boundProperty).BoundVariable.Text;
|
||||
|
||||
@ -17,10 +17,6 @@ namespace OSCADSharp.Scripting
|
||||
private Bindings.Bindings bindings = null;
|
||||
private IBindings ibindings = null;
|
||||
|
||||
internal StatementBuilder()
|
||||
{
|
||||
}
|
||||
|
||||
internal StatementBuilder(Bindings.Bindings bindings)
|
||||
{
|
||||
this.bindings = bindings;
|
||||
@ -77,16 +73,7 @@ namespace OSCADSharp.Scripting
|
||||
{
|
||||
SB.Append(text);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Pass-through for StringBuilder.AppendLine
|
||||
/// </summary>
|
||||
/// <param name="text"></param>
|
||||
public void AppendLine(string text)
|
||||
{
|
||||
SB.AppendLine(text);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets this builder's full string
|
||||
/// </summary>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user