diff options
author | Homer Horwitz | 2009-04-04 14:26:24 +0000 |
---|---|---|
committer | Homer Horwitz | 2009-04-04 14:26:24 +0000 |
commit | c6283cacacd9c2a0992e233f54b6d9d272564449 (patch) | |
tree | a1ffa8eea54bf495e572338aa5773f8eab556fd0 /OpenSim | |
parent | Preliminary work to support ObjectSpin* packets when user invokes CTRL / SHIF... (diff) | |
download | opensim-SC_OLD-c6283cacacd9c2a0992e233f54b6d9d272564449.zip opensim-SC_OLD-c6283cacacd9c2a0992e233f54b6d9d272564449.tar.gz opensim-SC_OLD-c6283cacacd9c2a0992e233f54b6d9d272564449.tar.bz2 opensim-SC_OLD-c6283cacacd9c2a0992e233f54b6d9d272564449.tar.xz |
Remove some Mono warnings.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Communications/Services/HGInventoryService.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/Util.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Services/HGInventoryService.cs b/OpenSim/Framework/Communications/Services/HGInventoryService.cs index d59d1ae..adc2056 100644 --- a/OpenSim/Framework/Communications/Services/HGInventoryService.cs +++ b/OpenSim/Framework/Communications/Services/HGInventoryService.cs | |||
@@ -62,14 +62,14 @@ namespace OpenSim.Framework.Communications.Services | |||
62 | IAssetDataPlugin m_assetProvider = null; | 62 | IAssetDataPlugin m_assetProvider = null; |
63 | 63 | ||
64 | // These two used for remote access | 64 | // These two used for remote access |
65 | string m_UserServerURL = string.Empty; | 65 | //string m_UserServerURL = string.Empty; |
66 | string m_AssetServerURL = string.Empty; | 66 | string m_AssetServerURL = string.Empty; |
67 | SynchronousGridAssetClient m_AssetClient = null; | 67 | SynchronousGridAssetClient m_AssetClient = null; |
68 | 68 | ||
69 | // Constructor for grid inventory server | 69 | // Constructor for grid inventory server |
70 | public HGInventoryService(InventoryServiceBase invService, string assetServiceURL, string userServiceURL, IHttpServer httpserver, string thisurl) | 70 | public HGInventoryService(InventoryServiceBase invService, string assetServiceURL, string userServiceURL, IHttpServer httpserver, string thisurl) |
71 | { | 71 | { |
72 | m_UserServerURL = userServiceURL; | 72 | //m_UserServerURL = userServiceURL; |
73 | m_AssetServerURL = assetServiceURL; | 73 | m_AssetServerURL = assetServiceURL; |
74 | 74 | ||
75 | m_AssetClient = new SynchronousGridAssetClient(m_AssetServerURL); | 75 | m_AssetClient = new SynchronousGridAssetClient(m_AssetServerURL); |
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index a0cac96..7019096 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -1024,7 +1024,7 @@ namespace OpenSim.Framework | |||
1024 | { | 1024 | { |
1025 | byte[] hash = ComputeMD5Hash( data + salt ); | 1025 | byte[] hash = ComputeMD5Hash( data + salt ); |
1026 | 1026 | ||
1027 | string s = BitConverter.ToString(hash); | 1027 | //string s = BitConverter.ToString(hash); |
1028 | 1028 | ||
1029 | Guid guid = new Guid( hash ); | 1029 | Guid guid = new Guid( hash ); |
1030 | 1030 | ||