* minor: remove some mono compiler warnings

prioritization
Justin Clark-Casey (justincc) 2009-10-14 19:43:56 +01:00
parent db4cdc0961
commit 0cb0a28fde
2 changed files with 4 additions and 4 deletions

View File

@ -298,7 +298,7 @@ namespace OpenSim.Services.Connectors
return; return;
} }
AssetBase asset = asset = m_Cache.Get(assetID.ToString()); AssetBase asset = m_Cache.Get(assetID.ToString());
if (asset == null) if (asset == null)
{ {

View File

@ -45,7 +45,7 @@ namespace OpenSim.Services.Connectors
LogManager.GetLogger( LogManager.GetLogger(
MethodBase.GetCurrentMethod().DeclaringType); MethodBase.GetCurrentMethod().DeclaringType);
private string m_ServerURI = String.Empty; // private string m_ServerURI = String.Empty;
public UserServicesConnector() public UserServicesConnector()
{ {
@ -53,7 +53,7 @@ namespace OpenSim.Services.Connectors
public UserServicesConnector(string serverURI) public UserServicesConnector(string serverURI)
{ {
m_ServerURI = serverURI.TrimEnd('/'); // m_ServerURI = serverURI.TrimEnd('/');
} }
public UserServicesConnector(IConfigSource source) public UserServicesConnector(IConfigSource source)
@ -78,7 +78,7 @@ namespace OpenSim.Services.Connectors
m_log.Error("[USER CONNECTOR]: No Server URI named in section UserService"); m_log.Error("[USER CONNECTOR]: No Server URI named in section UserService");
throw new Exception("User connector init error"); throw new Exception("User connector init error");
} }
m_ServerURI = serviceURI; //m_ServerURI = serviceURI;
} }
public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName) public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName)