aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Tests
diff options
context:
space:
mode:
authorJeff Ames2009-06-04 03:58:04 +0000
committerJeff Ames2009-06-04 03:58:04 +0000
commitc6cef4bad5fe939b822687f521907c11c05a2bb3 (patch)
treeea76bc0035027a23e7ec9f05f6c77e01f106b880 /OpenSim/Server/Handlers/Tests
parentComment out unused private functions to avoid compiler warnings. (diff)
downloadopensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.zip
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.gz
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.bz2
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.xz
Comment out unused variables / private fields to avoid compiler warnings.
Diffstat (limited to 'OpenSim/Server/Handlers/Tests')
-rw-r--r--OpenSim/Server/Handlers/Tests/Asset/AssetServerGetHandlerTests.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Server/Handlers/Tests/Asset/AssetServerGetHandlerTests.cs b/OpenSim/Server/Handlers/Tests/Asset/AssetServerGetHandlerTests.cs
index aeca7b9..2615358 100644
--- a/OpenSim/Server/Handlers/Tests/Asset/AssetServerGetHandlerTests.cs
+++ b/OpenSim/Server/Handlers/Tests/Asset/AssetServerGetHandlerTests.cs
@@ -46,7 +46,7 @@ namespace OpenSim.Server.Handlers.Tests.Asset
46 { 46 {
47 TestHelper.InMethod(); 47 TestHelper.InMethod();
48 48
49 AssetServerGetHandler handler = new AssetServerGetHandler( null ); 49 AssetServerGetHandler handler = new AssetServerGetHandler(null);
50 } 50 }
51 51
52 [Test] 52 [Test]
@@ -54,7 +54,7 @@ namespace OpenSim.Server.Handlers.Tests.Asset
54 { 54 {
55 TestHelper.InMethod(); 55 TestHelper.InMethod();
56 56
57 AssetServerGetHandler handler = new AssetServerGetHandler(null); 57 AssetServerGetHandler handler = new AssetServerGetHandler(null);
58 BaseRequestHandlerTestHelper.BaseTestGetParams(handler, ASSETS_PATH); 58 BaseRequestHandlerTestHelper.BaseTestGetParams(handler, ASSETS_PATH);
59 } 59 }
60 60
@@ -63,18 +63,18 @@ namespace OpenSim.Server.Handlers.Tests.Asset
63 { 63 {
64 TestHelper.InMethod(); 64 TestHelper.InMethod();
65 65
66 AssetServerGetHandler handler = new AssetServerGetHandler(null); 66 AssetServerGetHandler handler = new AssetServerGetHandler(null);
67 BaseRequestHandlerTestHelper.BaseTestSplitParams(handler, ASSETS_PATH); 67 BaseRequestHandlerTestHelper.BaseTestSplitParams(handler, ASSETS_PATH);
68 } 68 }
69 69
70 // TODO: unused 70 // TODO: unused
71 // private static AssetBase CreateTestEnvironment(out AssetServerGetHandler handler, out OSHttpResponse response) 71 // private static AssetBase CreateTestEnvironment(out AssetServerGetHandler handler, out OSHttpResponse response)
72 // { 72 // {
73 // AssetBase asset = GetAssetStreamHandlerTestHelpers.CreateCommonTestResources(out response); 73 // AssetBase asset = GetAssetStreamHandlerTestHelpers.CreateCommonTestResources(out response);
74 // IAssetService assetDataPlugin = new TestAssetService(); 74 // IAssetService assetDataPlugin = new TestAssetService();
75 // handler = new AssetServerGetHandler(assetDataPlugin); 75 // handler = new AssetServerGetHandler(assetDataPlugin);
76 // assetDataPlugin.Store(asset); 76 // assetDataPlugin.Store(asset);
77 // return asset; 77 // return asset;
78 // } 78 // }
79 } 79 }
80} \ No newline at end of file 80}