aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-03-14 00:18:35 +0000
committerJustin Clark-Casey (justincc)2015-03-16 19:18:56 +0000
commit60889f139adcbeb3f6fb9c36b7c7d112f29a2ca4 (patch)
tree5d758fa852aba92c94b479cf3ea82df0c4285b26
parentActually start a region created via the "create region" console command. (diff)
downloadopensim-SC-60889f139adcbeb3f6fb9c36b7c7d112f29a2ca4.zip
opensim-SC-60889f139adcbeb3f6fb9c36b7c7d112f29a2ca4.tar.gz
opensim-SC-60889f139adcbeb3f6fb9c36b7c7d112f29a2ca4.tar.bz2
opensim-SC-60889f139adcbeb3f6fb9c36b7c7d112f29a2ca4.tar.xz
minor: fix compiler warnings in EstateDataRobustConnector
-rw-r--r--OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs b/OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs
index 4fe74f9..e0c2810 100644
--- a/OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs
+++ b/OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs
@@ -73,7 +73,7 @@ namespace OpenSim.Server.Handlers
73 73
74 public class EstateServerGetHandler : BaseStreamHandler 74 public class EstateServerGetHandler : BaseStreamHandler
75 { 75 {
76 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 76// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
77 77
78 IEstateDataService m_EstateService; 78 IEstateDataService m_EstateService;
79 79
@@ -94,7 +94,6 @@ namespace OpenSim.Server.Handlers
94 protected override byte[] ProcessRequest(string path, Stream request, 94 protected override byte[] ProcessRequest(string path, Stream request,
95 IOSHttpRequest httpRequest, IOSHttpResponse httpResponse) 95 IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
96 { 96 {
97 byte[] result = new byte[0];
98 Dictionary<string, object> data = null; 97 Dictionary<string, object> data = null;
99 98
100 string[] p = SplitParams(path); 99 string[] p = SplitParams(path);
@@ -271,7 +270,6 @@ namespace OpenSim.Server.Handlers
271 protected override byte[] ProcessRequest(string path, Stream request, 270 protected override byte[] ProcessRequest(string path, Stream request,
272 IOSHttpRequest httpRequest, IOSHttpResponse httpResponse) 271 IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
273 { 272 {
274 byte[] result = new byte[0];
275 Dictionary<string, object> data = null; 273 Dictionary<string, object> data = null;
276 274
277 string[] p = SplitParams(path); 275 string[] p = SplitParams(path);