aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/ClientManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/ClientManager.cs')
-rw-r--r--OpenSim/Framework/ClientManager.cs8
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 @@
28using System; 28using System;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using System.Reflection; 30using System.Reflection;
31using libsecondlife; 31using OpenMetaverse;
32using libsecondlife.Packets; 32using OpenMetaverse.Packets;
33using log4net; 33using log4net;
34 34
35namespace OpenSim.Framework 35namespace 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