diff options
author | Teravus Ovares | 2008-05-14 05:08:22 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-14 05:08:22 +0000 |
commit | eff470c0de2ce38db76bae15ae7ac28ad155c016 (patch) | |
tree | 5259b569461f29c346ce63f547b461671fcf4e37 | |
parent | * Refactored OutPacket out of ScenePresence (diff) | |
download | opensim-SC_OLD-eff470c0de2ce38db76bae15ae7ac28ad155c016.zip opensim-SC_OLD-eff470c0de2ce38db76bae15ae7ac28ad155c016.tar.gz opensim-SC_OLD-eff470c0de2ce38db76bae15ae7ac28ad155c016.tar.bz2 opensim-SC_OLD-eff470c0de2ce38db76bae15ae7ac28ad155c016.tar.xz |
* Added 3 warnings in response to the warnings. Adam, read the warnings.
-rw-r--r-- | OpenSim/Framework/ClientManager.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/Groups/GroupsModule.cs | 1 |
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 | ||