refactor: Removing unused code

This commit is contained in:
Chris Cameron
2019-01-07 12:20:13 -05:00
parent 4cd28a8a12
commit 4a411e8990

View File

@@ -1100,17 +1100,6 @@ namespace ICD.Common.Utils.Xml
#region Print
/// <summary>
/// Prints the xml document.
/// </summary>
/// <param name="xml"></param>
[PublicAPI]
public static void Print(string xml)
{
string result = Format(xml);
IcdConsole.PrintLine(result);
}
/// <summary>
/// Formats the given xml string into a human readable structure with indentations.
/// </summary>
@@ -1128,12 +1117,10 @@ namespace ICD.Common.Utils.Xml
IcdXmlDocument document = new IcdXmlDocument();
document.LoadXml(xml);
document.WriteContentTo(writer);
writer.Flush();
return builder.ToString();
}
}
return builder.ToString();
}
#endregion