From 8821731aabf23b94eea9187a0842b18c5f0e83ee Mon Sep 17 00:00:00 2001 From: CloneTrooper1019 Date: Mon, 10 Jun 2019 20:28:10 -0500 Subject: [PATCH] Removed unused function. --- XmlFormat/IO/XmlFileWriter.cs | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/XmlFormat/IO/XmlFileWriter.cs b/XmlFormat/IO/XmlFileWriter.cs index e8bec1d..fafb4c6 100644 --- a/XmlFormat/IO/XmlFileWriter.cs +++ b/XmlFormat/IO/XmlFileWriter.cs @@ -46,23 +46,6 @@ namespace RobloxFiles.XmlFormat 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) { string propType = prop.XmlToken;