aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-30 18:34:43 +0000
committerJustin Clarke Casey2009-03-30 18:34:43 +0000
commit176f263d23619e99c87a69e1cf166a8c912e3037 (patch)
tree537e31dd8eb1a9ce281c2847947d198c5e0855a5 /OpenSim/Region/CoreModules
parent* refactor: Move god related methods in Scene out to a module (diff)
downloadopensim-SC_OLD-176f263d23619e99c87a69e1cf166a8c912e3037.zip
opensim-SC_OLD-176f263d23619e99c87a69e1cf166a8c912e3037.tar.gz
opensim-SC_OLD-176f263d23619e99c87a69e1cf166a8c912e3037.tar.bz2
opensim-SC_OLD-176f263d23619e99c87a69e1cf166a8c912e3037.tar.xz
* minor: remove mono compiler warnings
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/InstantMessage/MuteListModule.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MuteListModule.cs b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MuteListModule.cs
index f19696e..d3e5b45 100644
--- a/OpenSim/Region/CoreModules/Avatar/InstantMessage/MuteListModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/InstantMessage/MuteListModule.cs
@@ -110,17 +110,17 @@ namespace OpenSim.Region.CoreModules.Avatar.MuteList
110 public void Close() 110 public void Close()
111 { 111 {
112 } 112 }
113 113
114 private IClientAPI FindClient(UUID agentID) 114// private IClientAPI FindClient(UUID agentID)
115 { 115// {
116 foreach (Scene s in m_SceneList) 116// foreach (Scene s in m_SceneList)
117 { 117// {
118 ScenePresence presence = s.GetScenePresence(agentID); 118// ScenePresence presence = s.GetScenePresence(agentID);
119 if (presence != null && !presence.IsChildAgent) 119// if (presence != null && !presence.IsChildAgent)
120 return presence.ControllingClient; 120// return presence.ControllingClient;
121 } 121// }
122 return null; 122// return null;
123 } 123// }
124 124
125 private void OnNewClient(IClientAPI client) 125 private void OnNewClient(IClientAPI client)
126 { 126 {