* refactor: Making some of the serialization names consistent, both within their pairings and with the others

* This does make some of the names less ideal than others - this should change in the future
This commit is contained in:
Justin Clarke Casey
2008-06-21 21:20:59 +00:00
parent 91ffb6722f
commit 908d91be78
5 changed files with 54 additions and 23 deletions

View File

@@ -99,12 +99,12 @@ namespace OpenSim.Region.Environment.Scenes
file.Close();
}
public static string SavePrimGroupToXML2String(SceneObjectGroup grp)
public static string SaveGroupToXml2(SceneObjectGroup grp)
{
return grp.ToXmlString2();
}
public static void LoadGroupFromXml2String(Scene scene, string xmlString)
public static void LoadGroupFromXml2(Scene scene, string xmlString)
{
XmlDocument doc = new XmlDocument();
XmlNode rootNode;