diff options
author | Dr Scofield | 2008-06-27 16:58:21 +0000 |
---|---|---|
committer | Dr Scofield | 2008-06-27 16:58:21 +0000 |
commit | feb30217de48f4b3d869bf13453a945a04ee2524 (patch) | |
tree | 9da974ca87997d2bdfdda8c027314b01eb8c299a /OpenSim/Data/UserDataBase.cs | |
parent | * restore suppression of mono addins manager warnings (diff) | |
download | opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.zip opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.gz opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.bz2 opensim-SC_OLD-feb30217de48f4b3d869bf13453a945a04ee2524.tar.xz |
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
Diffstat (limited to 'OpenSim/Data/UserDataBase.cs')
-rw-r--r-- | OpenSim/Data/UserDataBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/UserDataBase.cs b/OpenSim/Data/UserDataBase.cs index 384dd19..eb21aee 100644 --- a/OpenSim/Data/UserDataBase.cs +++ b/OpenSim/Data/UserDataBase.cs | |||
@@ -35,9 +35,9 @@ namespace OpenSim.Data | |||
35 | { | 35 | { |
36 | public abstract class UserDataBase : IUserData | 36 | public abstract class UserDataBase : IUserData |
37 | { | 37 | { |
38 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 38 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
39 | 39 | ||
40 | private Dictionary<LLUUID, AvatarAppearance> aplist = new Dictionary<LLUUID, AvatarAppearance>(); | 40 | // private Dictionary<LLUUID, AvatarAppearance> aplist = new Dictionary<LLUUID, AvatarAppearance>(); |
41 | 41 | ||
42 | public abstract UserProfileData GetUserByUUID(LLUUID user); | 42 | public abstract UserProfileData GetUserByUUID(LLUUID user); |
43 | public abstract UserProfileData GetUserByName(string fname, string lname); | 43 | public abstract UserProfileData GetUserByName(string fname, string lname); |