Removed unused function.

This commit is contained in:
CloneTrooper1019 2019-06-10 20:28:10 -05:00
parent 41c84dc49c
commit 8821731aab

View File

@ -46,23 +46,6 @@ namespace RobloxFiles.XmlFormat
file.Instances.Add(inst.Referent, inst); file.Instances.Add(inst.Referent, inst);
} }
public static XmlElement CreateRobloxElement(XmlDocument doc)
{
XmlElement roblox = doc.CreateElement("roblox");
roblox.SetAttribute("version", "4");
doc.AppendChild(roblox);
XmlElement externalNull = doc.CreateElement("External");
roblox.AppendChild(externalNull);
externalNull.InnerText = "null";
XmlElement externalNil = doc.CreateElement("External");
roblox.AppendChild(externalNil);
externalNil.InnerText = "nil";
return roblox;
}
public static XmlNode WriteProperty(Property prop, XmlDocument doc, XmlRobloxFile file) public static XmlNode WriteProperty(Property prop, XmlDocument doc, XmlRobloxFile file)
{ {
string propType = prop.XmlToken; string propType = prop.XmlToken;