* minor: eliminate mono compiler warnings
parent
3223a4d16d
commit
fbf90b1ece
|
@ -118,7 +118,7 @@ namespace OpenSim.Framework.Communications
|
|||
bool GoodXML = (requestData.Contains("first") && requestData.Contains("last") &&
|
||||
(requestData.Contains("passwd") || requestData.Contains("web_login_key")));
|
||||
|
||||
bool GoodLogin;
|
||||
//bool GoodLogin;
|
||||
|
||||
string startLocationRequest = "last";
|
||||
|
||||
|
|
|
@ -527,10 +527,10 @@ namespace OpenSim.Region.Communications.Hypergrid
|
|||
|
||||
public bool InformRegionOfUser(RegionInfo regInfo, AgentCircuitData agentData)
|
||||
{
|
||||
ulong regionHandle = regInfo.RegionHandle;
|
||||
//ulong regionHandle = regInfo.RegionHandle;
|
||||
try
|
||||
{
|
||||
regionHandle = Convert.ToUInt64(regInfo.regionSecret);
|
||||
//regionHandle = Convert.ToUInt64(regInfo.regionSecret);
|
||||
m_log.Info("[HGrid]: InformRegionOfUser: Remote hyperlinked region " + regInfo.regionSecret);
|
||||
}
|
||||
catch
|
||||
|
@ -883,7 +883,7 @@ namespace OpenSim.Region.Communications.Hypergrid
|
|||
if (regInfo == null)
|
||||
return false;
|
||||
|
||||
ulong realHandle = regionHandle;
|
||||
//ulong realHandle = regionHandle;
|
||||
|
||||
CachedUserInfo uinfo = m_userProfileCache.GetUserDetails(agentData.AgentID);
|
||||
if ((uinfo == null) || !IsGoingHome(uinfo, regInfo))
|
||||
|
|
|
@ -46,7 +46,7 @@ namespace OpenSim.Region.Communications.Hypergrid
|
|||
= LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
private string _inventoryServerUrl;
|
||||
private Uri m_Uri;
|
||||
//private Uri m_Uri;
|
||||
private UserProfileCacheService m_userProfileCache;
|
||||
private bool m_gridmode = false;
|
||||
|
||||
|
@ -61,7 +61,7 @@ namespace OpenSim.Region.Communications.Hypergrid
|
|||
public HGInventoryService(string inventoryServerUrl, UserProfileCacheService userProfileCacheService, bool gridmode)
|
||||
{
|
||||
_inventoryServerUrl = HGNetworkServersInfo.ServerURI(inventoryServerUrl);
|
||||
m_Uri = new Uri(_inventoryServerUrl);
|
||||
//m_Uri = new Uri(_inventoryServerUrl);
|
||||
m_userProfileCache = userProfileCacheService;
|
||||
m_gridmode = gridmode;
|
||||
}
|
||||
|
|
|
@ -47,14 +47,14 @@ namespace OpenSim.Region.Communications.Hypergrid
|
|||
/// </summary>
|
||||
public class HGUserServices : IUserService, IAvatarService, IMessagingService
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
private HGCommunicationsGridMode m_parent;
|
||||
//private HGCommunicationsGridMode m_parent;
|
||||
private OGS1UserServices m_remoteUserServices;
|
||||
|
||||
public HGUserServices(HGCommunicationsGridMode parent)
|
||||
{
|
||||
m_parent = parent;
|
||||
//m_parent = parent;
|
||||
m_remoteUserServices = new OGS1UserServices(parent);
|
||||
}
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
|||
private static bool enabled = false;
|
||||
|
||||
Scene m_scene;
|
||||
AssetService m_assetService;
|
||||
//AssetService m_assetService;
|
||||
|
||||
#region IRegionModule interface
|
||||
|
||||
|
@ -75,7 +75,8 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
|||
{
|
||||
m_log.Info("[HGStandaloneAssetService]: Starting...");
|
||||
|
||||
m_assetService = new AssetService(m_scene);
|
||||
//m_assetService = new AssetService(m_scene);
|
||||
new AssetService(m_scene);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
|||
private static bool enabled = false;
|
||||
|
||||
Scene m_scene;
|
||||
InventoryService m_inventoryService;
|
||||
//InventoryService m_inventoryService;
|
||||
|
||||
#region IRegionModule interface
|
||||
|
||||
|
@ -73,7 +73,8 @@ namespace OpenSim.Region.Environment.Modules.Hypergrid
|
|||
if (enabled)
|
||||
{
|
||||
m_log.Info("[HGStandaloneInvService]: Starting...");
|
||||
m_inventoryService = new InventoryService(m_scene);
|
||||
//m_inventoryService = new InventoryService(m_scene);
|
||||
new InventoryService(m_scene);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -262,7 +262,7 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid
|
|||
|
||||
private Dictionary<UUID, bool> SniffUUIDs(UUID assetID)
|
||||
{
|
||||
Dictionary<UUID, bool> uuids = new Dictionary<UUID, bool>();
|
||||
//Dictionary<UUID, bool> uuids = new Dictionary<UUID, bool>();
|
||||
|
||||
AssetBase asset;
|
||||
m_scene.CommsManager.AssetCache.TryGetCachedAsset(assetID, out asset);
|
||||
|
|
Loading…
Reference in New Issue