mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-24 19:48:28 +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);
|
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()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return this.bindings.Get(this.boundProperty).BoundVariable.Text;
|
return this.bindings.Get(this.boundProperty).BoundVariable.Text;
|
||||||
|
|||||||
@ -17,10 +17,6 @@ namespace OSCADSharp.Scripting
|
|||||||
private Bindings.Bindings bindings = null;
|
private Bindings.Bindings bindings = null;
|
||||||
private IBindings ibindings = null;
|
private IBindings ibindings = null;
|
||||||
|
|
||||||
internal StatementBuilder()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
internal StatementBuilder(Bindings.Bindings bindings)
|
internal StatementBuilder(Bindings.Bindings bindings)
|
||||||
{
|
{
|
||||||
this.bindings = bindings;
|
this.bindings = bindings;
|
||||||
@ -78,15 +74,6 @@ namespace OSCADSharp.Scripting
|
|||||||
SB.Append(text);
|
SB.Append(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Pass-through for StringBuilder.AppendLine
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="text"></param>
|
|
||||||
public void AppendLine(string text)
|
|
||||||
{
|
|
||||||
SB.AppendLine(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets this builder's full string
|
/// Gets this builder's full string
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user