Deleted unused method in Text3D

This commit is contained in:
Michael Smith 2016-02-29 23:18:18 -08:00
parent 5d9f7c2a65
commit 53be8a6a1b

View File

@ -46,7 +46,6 @@ namespace OSCADSharp.Solids
/// The language of the text. Default is "en". /// The language of the text. Default is "en".
/// </summary> /// </summary>
public string Language { get; set; } public string Language { get; set; }
#endregion #endregion
#region Constructors #region Constructors
@ -90,17 +89,6 @@ namespace OSCADSharp.Solids
}; };
} }
private void appendIfValueNotNullOrEmpty(string name, string value, StringBuilder sb)
{
if(!String.IsNullOrEmpty(value))
{
sb.Append(", ");
sb.Append(name);
sb.Append("=");
sb.Append(value);
}
}
/// <summary> /// <summary>
/// Converts this object to an OpenSCAD script /// Converts this object to an OpenSCAD script
/// </summary> /// </summary>