aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
diff options
context:
space:
mode:
authorMW2007-11-04 22:22:53 +0000
committerMW2007-11-04 22:22:53 +0000
commitd56ed8fe9c6428a4ac3288190be303b5813b0b91 (patch)
tree06027d80d7cddda34f05b0d93bf16cb4983217c0 /OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
parentAdded forgotten ApplicationPlugins directory and moved the load region code o... (diff)
downloadopensim-SC_OLD-d56ed8fe9c6428a4ac3288190be303b5813b0b91.zip
opensim-SC_OLD-d56ed8fe9c6428a4ac3288190be303b5813b0b91.tar.gz
opensim-SC_OLD-d56ed8fe9c6428a4ac3288190be303b5813b0b91.tar.bz2
opensim-SC_OLD-d56ed8fe9c6428a4ac3288190be303b5813b0b91.tar.xz
Some more refactoring
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
index e67d413..fe8414d 100644
--- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
@@ -1,4 +1,4 @@
1using System; 1using System;
2using System.Collections.Generic; 2using System.Collections.Generic;
3using System.Net; 3using System.Net;
4using System.Text; 4using System.Text;
@@ -204,9 +204,10 @@ namespace OpenSim.Region.Environment.Scenes
204 return m_commsProvider.InterRegion.ExpectAvatarCrossing(regionhandle, agentID, position, isFlying); 204 return m_commsProvider.InterRegion.ExpectAvatarCrossing(regionhandle, agentID, position, isFlying);
205 } 205 }
206 206
207 public void CloseAgentConnection(ScenePresence presence) 207 public void CloseChildAgentConnections(ScenePresence presence)
208 { 208 {
209 throw new Exception("The method or operation is not implemented."); 209
210 } 210 }
211 } 211 }
212} 212}
213