From feb30217de48f4b3d869bf13453a945a04ee2524 Mon Sep 17 00:00:00 2001 From: Dr Scofield Date: Fri, 27 Jun 2008 16:58:21 +0000 Subject: dr scofield's warning safari: * commented out [Obsolete(....)] attributes where no replacement feature was available: if we want to attribute code that we think needs to be reworked, we should define a new attribute and use that instead (together with a little tool to retrieve all the attributed code then) * commenting out unused variables --- OpenSim/Region/Communications/Local/LocalBackEndServices.cs | 2 +- OpenSim/Region/Communications/Local/LocalLoginService.cs | 2 +- OpenSim/Region/Communications/Local/LocalUserServices.cs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Communications') diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index 989f08a..47606c2 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs @@ -45,7 +45,7 @@ namespace OpenSim.Region.Communications.Local protected Dictionary m_regionListeners = new Dictionary(); - private Dictionary m_remoteRegionInfoCache = new Dictionary(); + // private Dictionary m_remoteRegionInfoCache = new Dictionary(); private Dictionary m_queuedGridSettings = new Dictionary(); diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 966fdd4..5f4558d 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs @@ -209,7 +209,7 @@ namespace OpenSim.Region.Communications.Local theUser.CurrentAgent.Region = reg.RegionID; theUser.CurrentAgent.Handle = reg.RegionHandle; - LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); + // LoginResponse.BuddyList buddyList = new LoginResponse.BuddyList(); response.BuddList = ConvertFriendListItem(m_userManager.GetUserFriendList(theUser.ID)); diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 47f596d..798dd24 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs @@ -34,7 +34,7 @@ namespace OpenSim.Region.Communications.Local { public class LocalUserServices : UserManagerBase { - private readonly NetworkServersInfo m_serversInfo; + // private readonly NetworkServersInfo m_serversInfo; private readonly uint m_defaultHomeX; private readonly uint m_defaultHomeY; private IInventoryServices m_inventoryService; @@ -50,7 +50,7 @@ namespace OpenSim.Region.Communications.Local public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY, IInventoryServices inventoryService) { - m_serversInfo = serversInfo; + // m_serversInfo = serversInfo; m_defaultHomeX = defaultHomeLocX; m_defaultHomeY = defaultHomeLocY; -- cgit v1.1