diff options
Diffstat (limited to 'OpenSim/Framework/ClientManager.cs')
-rw-r--r-- | OpenSim/Framework/ClientManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 091f308..e99001b 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs | |||
@@ -28,8 +28,8 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | 30 | using System.Reflection; |
31 | using libsecondlife; | 31 | using OpenMetaverse; |
32 | using libsecondlife.Packets; | 32 | using OpenMetaverse.Packets; |
33 | using log4net; | 33 | using log4net; |
34 | 34 | ||
35 | namespace OpenSim.Framework | 35 | namespace OpenSim.Framework |
@@ -117,7 +117,7 @@ namespace OpenSim.Framework | |||
117 | } | 117 | } |
118 | } | 118 | } |
119 | 119 | ||
120 | public void CloseAllCircuits(LLUUID agentId) | 120 | public void CloseAllCircuits(UUID agentId) |
121 | { | 121 | { |
122 | uint[] circuits = GetAllCircuits(agentId); | 122 | uint[] circuits = GetAllCircuits(agentId); |
123 | // We're using a for loop here so changes to the circuits don't cause it to completely fail. | 123 | // We're using a for loop here so changes to the circuits don't cause it to completely fail. |
@@ -144,7 +144,7 @@ namespace OpenSim.Framework | |||
144 | } | 144 | } |
145 | 145 | ||
146 | // [Obsolete("Using Obsolete to drive development is invalid. Obsolete presumes that something new has already been created to replace this.")] | 146 | // [Obsolete("Using Obsolete to drive development is invalid. Obsolete presumes that something new has already been created to replace this.")] |
147 | public uint[] GetAllCircuits(LLUUID agentId) | 147 | public uint[] GetAllCircuits(UUID agentId) |
148 | { | 148 | { |
149 | List<uint> circuits = new List<uint>(); | 149 | List<uint> circuits = new List<uint>(); |
150 | // Wasteful, I know | 150 | // Wasteful, I know |