aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDiva Canto2010-12-27 16:26:29 -0800
committerDiva Canto2010-12-27 16:26:29 -0800
commit6386dfd362991eef4b799b85085a02b80dd439b8 (patch)
treec8542afd25b1f5a0e7dbfd3747f47183e0d0677a /OpenSim
parentWARNING: simulator config var change! This affects only system-facing configs... (diff)
downloadopensim-SC_OLD-6386dfd362991eef4b799b85085a02b80dd439b8.zip
opensim-SC_OLD-6386dfd362991eef4b799b85085a02b80dd439b8.tar.gz
opensim-SC_OLD-6386dfd362991eef4b799b85085a02b80dd439b8.tar.bz2
opensim-SC_OLD-6386dfd362991eef4b799b85085a02b80dd439b8.tar.xz
No need for these methods to be virtual now.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Services/Connectors/Grid/GridServiceConnector.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs b/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
index 80f0d2d..5092d74 100644
--- a/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
+++ b/OpenSim/Services/Connectors/Grid/GridServiceConnector.cs
@@ -86,7 +86,7 @@ namespace OpenSim.Services.Connectors
86 86
87 #region IGridService 87 #region IGridService
88 88
89 public virtual string RegisterRegion(UUID scopeID, GridRegion regionInfo) 89 public string RegisterRegion(UUID scopeID, GridRegion regionInfo)
90 { 90 {
91 Dictionary<string, object> rinfo = regionInfo.ToKeyValuePairs(); 91 Dictionary<string, object> rinfo = regionInfo.ToKeyValuePairs();
92 Dictionary<string, object> sendData = new Dictionary<string,object>(); 92 Dictionary<string, object> sendData = new Dictionary<string,object>();
@@ -140,7 +140,7 @@ namespace OpenSim.Services.Connectors
140 return "Error communicating with grid service"; 140 return "Error communicating with grid service";
141 } 141 }
142 142
143 public virtual bool DeregisterRegion(UUID regionID) 143 public bool DeregisterRegion(UUID regionID)
144 { 144 {
145 Dictionary<string, object> sendData = new Dictionary<string, object>(); 145 Dictionary<string, object> sendData = new Dictionary<string, object>();
146 146
@@ -172,7 +172,7 @@ namespace OpenSim.Services.Connectors
172 return false; 172 return false;
173 } 173 }
174 174
175 public virtual List<GridRegion> GetNeighbours(UUID scopeID, UUID regionID) 175 public List<GridRegion> GetNeighbours(UUID scopeID, UUID regionID)
176 { 176 {
177 Dictionary<string, object> sendData = new Dictionary<string, object>(); 177 Dictionary<string, object> sendData = new Dictionary<string, object>();
178 178
@@ -219,7 +219,7 @@ namespace OpenSim.Services.Connectors
219 return rinfos; 219 return rinfos;
220 } 220 }
221 221
222 public virtual GridRegion GetRegionByUUID(UUID scopeID, UUID regionID) 222 public GridRegion GetRegionByUUID(UUID scopeID, UUID regionID)
223 { 223 {
224 Dictionary<string, object> sendData = new Dictionary<string, object>(); 224 Dictionary<string, object> sendData = new Dictionary<string, object>();
225 225
@@ -265,7 +265,7 @@ namespace OpenSim.Services.Connectors
265 return rinfo; 265 return rinfo;
266 } 266 }
267 267
268 public virtual GridRegion GetRegionByPosition(UUID scopeID, int x, int y) 268 public GridRegion GetRegionByPosition(UUID scopeID, int x, int y)
269 { 269 {
270 Dictionary<string, object> sendData = new Dictionary<string, object>(); 270 Dictionary<string, object> sendData = new Dictionary<string, object>();
271 271
@@ -310,7 +310,7 @@ namespace OpenSim.Services.Connectors
310 return rinfo; 310 return rinfo;
311 } 311 }
312 312
313 public virtual GridRegion GetRegionByName(UUID scopeID, string regionName) 313 public GridRegion GetRegionByName(UUID scopeID, string regionName)
314 { 314 {
315 Dictionary<string, object> sendData = new Dictionary<string, object>(); 315 Dictionary<string, object> sendData = new Dictionary<string, object>();
316 316
@@ -351,7 +351,7 @@ namespace OpenSim.Services.Connectors
351 return rinfo; 351 return rinfo;
352 } 352 }
353 353
354 public virtual List<GridRegion> GetRegionsByName(UUID scopeID, string name, int maxNumber) 354 public List<GridRegion> GetRegionsByName(UUID scopeID, string name, int maxNumber)
355 { 355 {
356 Dictionary<string, object> sendData = new Dictionary<string, object>(); 356 Dictionary<string, object> sendData = new Dictionary<string, object>();
357 357
@@ -400,7 +400,7 @@ namespace OpenSim.Services.Connectors
400 return rinfos; 400 return rinfos;
401 } 401 }
402 402
403 public virtual List<GridRegion> GetRegionRange(UUID scopeID, int xmin, int xmax, int ymin, int ymax) 403 public List<GridRegion> GetRegionRange(UUID scopeID, int xmin, int xmax, int ymin, int ymax)
404 { 404 {
405 Dictionary<string, object> sendData = new Dictionary<string, object>(); 405 Dictionary<string, object> sendData = new Dictionary<string, object>();
406 406
@@ -606,7 +606,7 @@ namespace OpenSim.Services.Connectors
606 return rinfos; 606 return rinfos;
607 } 607 }
608 608
609 public virtual int GetRegionFlags(UUID scopeID, UUID regionID) 609 public int GetRegionFlags(UUID scopeID, UUID regionID)
610 { 610 {
611 Dictionary<string, object> sendData = new Dictionary<string, object>(); 611 Dictionary<string, object> sendData = new Dictionary<string, object>();
612 612