Remove some Mono warnings.

0.6.5-rc1
Homer Horwitz 2009-04-04 14:26:24 +00:00
parent 449bebf16e
commit c6283cacac
2 changed files with 3 additions and 3 deletions

View File

@ -62,14 +62,14 @@ namespace OpenSim.Framework.Communications.Services
IAssetDataPlugin m_assetProvider = null; IAssetDataPlugin m_assetProvider = null;
// These two used for remote access // These two used for remote access
string m_UserServerURL = string.Empty; //string m_UserServerURL = string.Empty;
string m_AssetServerURL = string.Empty; string m_AssetServerURL = string.Empty;
SynchronousGridAssetClient m_AssetClient = null; SynchronousGridAssetClient m_AssetClient = null;
// Constructor for grid inventory server // Constructor for grid inventory server
public HGInventoryService(InventoryServiceBase invService, string assetServiceURL, string userServiceURL, IHttpServer httpserver, string thisurl) public HGInventoryService(InventoryServiceBase invService, string assetServiceURL, string userServiceURL, IHttpServer httpserver, string thisurl)
{ {
m_UserServerURL = userServiceURL; //m_UserServerURL = userServiceURL;
m_AssetServerURL = assetServiceURL; m_AssetServerURL = assetServiceURL;
m_AssetClient = new SynchronousGridAssetClient(m_AssetServerURL); m_AssetClient = new SynchronousGridAssetClient(m_AssetServerURL);

View File

@ -1024,7 +1024,7 @@ namespace OpenSim.Framework
{ {
byte[] hash = ComputeMD5Hash( data + salt ); byte[] hash = ComputeMD5Hash( data + salt );
string s = BitConverter.ToString(hash); //string s = BitConverter.ToString(hash);
Guid guid = new Guid( hash ); Guid guid = new Guid( hash );