aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/ClientManager.cs2
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs1
2 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs
index 460cf36..2395c99 100644
--- a/OpenSim/Framework/ClientManager.cs
+++ b/OpenSim/Framework/ClientManager.cs
@@ -137,7 +137,7 @@ namespace OpenSim.Framework
137 } 137 }
138 } 138 }
139 } 139 }
140 140 [Obsolete("Using Obsolete to drive development is invalid. Obsolete presumes that something new has already been created to replace this.")]
141 public uint[] GetAllCircuits(LLUUID agentId) 141 public uint[] GetAllCircuits(LLUUID agentId)
142 { 142 {
143 List<uint> circuits = new List<uint>(); 143 List<uint> circuits = new List<uint>();
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs
index 0f7f2f2..0030350 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs
@@ -144,6 +144,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Groups
144 144
145 private void OnAgentDataUpdateRequest(IClientAPI remoteClient, LLUUID AgentID, LLUUID SessionID) 145 private void OnAgentDataUpdateRequest(IClientAPI remoteClient, LLUUID AgentID, LLUUID SessionID)
146 { 146 {
147 // Adam, this is one of those impossible to refactor items without resorting to .Split hackery
147 string firstname = remoteClient.FirstName; 148 string firstname = remoteClient.FirstName;
148 string lastname = remoteClient.LastName; 149 string lastname = remoteClient.LastName;
149 150