aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJohan Berntsson2008-03-26 02:12:28 +0000
committerJohan Berntsson2008-03-26 02:12:28 +0000
commit7f5e1546e2c8039639c986465e0bbc314fdb8e81 (patch)
tree2009d247c0988ab4dc7f2290f8cd5f6ff40cba76 /OpenSim
parent* Massaging CAPS setup/teardown log messages (diff)
downloadopensim-SC_OLD-7f5e1546e2c8039639c986465e0bbc314fdb8e81.zip
opensim-SC_OLD-7f5e1546e2c8039639c986465e0bbc314fdb8e81.tar.gz
opensim-SC_OLD-7f5e1546e2c8039639c986465e0bbc314fdb8e81.tar.bz2
opensim-SC_OLD-7f5e1546e2c8039639c986465e0bbc314fdb8e81.tar.xz
Removing redundant code
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/EntityBase.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EntityBase.cs b/OpenSim/Region/Environment/Scenes/EntityBase.cs
index c6a5b29..438118f 100644
--- a/OpenSim/Region/Environment/Scenes/EntityBase.cs
+++ b/OpenSim/Region/Environment/Scenes/EntityBase.cs
@@ -148,8 +148,6 @@ namespace OpenSim.Region.Environment.Scenes
148 throw new System.ArgumentNullException("info"); 148 throw new System.ArgumentNullException("info");
149 } 149 }
150 150
151 //JB m_children = (List<EntityBase>)info.GetValue("m_children", typeof(List<EntityBase>));
152// m_scene = (Scene)info.GetValue("m_scene", typeof(Scene));
153 m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid))); 151 m_uuid = new LLUUID((Guid)info.GetValue("m_uuid", typeof(Guid)));
154 m_name = (string)info.GetValue("m_name", typeof(string)); 152 m_name = (string)info.GetValue("m_name", typeof(string));
155 153
@@ -193,9 +191,6 @@ namespace OpenSim.Region.Environment.Scenes
193 throw new System.ArgumentNullException("info"); 191 throw new System.ArgumentNullException("info");
194 } 192 }
195 193
196 //JB info.AddValue("m_children", m_children);
197
198// info.AddValue("m_scene", m_scene);
199 info.AddValue("m_uuid", m_uuid.UUID); 194 info.AddValue("m_uuid", m_uuid.UUID);
200 info.AddValue("m_name", m_name); 195 info.AddValue("m_name", m_name);
201 196