diff options
author | Justin Clark-Casey (justincc) | 2015-03-14 00:18:35 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-03-14 00:18:35 +0000 |
commit | fec2527e6c2876014b208b49407aa7c30c7e1ba3 (patch) | |
tree | 6a0e3150f20f370038fec8e9c6fc2066de5ee4c7 /OpenSim/Server | |
parent | Actually start a region created via the "create region" console command. (diff) | |
download | opensim-SC-fec2527e6c2876014b208b49407aa7c30c7e1ba3.zip opensim-SC-fec2527e6c2876014b208b49407aa7c30c7e1ba3.tar.gz opensim-SC-fec2527e6c2876014b208b49407aa7c30c7e1ba3.tar.bz2 opensim-SC-fec2527e6c2876014b208b49407aa7c30c7e1ba3.tar.xz |
minor: fix compiler warnings in EstateDataRobustConnector
Diffstat (limited to 'OpenSim/Server')
-rw-r--r-- | OpenSim/Server/Handlers/Estate/EstateDataRobustConnector.cs | 4 |
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); |