diff options
author | Sean Dague | 2008-05-02 12:35:24 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-02 12:35:24 +0000 |
commit | 4a8f43244160ca9324cc43a54ba64a51e10268bf (patch) | |
tree | 5035f70e843c1a6594193e0cd7db1c1d57b83528 /OpenSim/Framework/Communications/UserManagerBase.cs | |
parent | Minor formatting and documentation cleanup. (diff) | |
download | opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.zip opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.gz opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.bz2 opensim-SC_OLD-4a8f43244160ca9324cc43a54ba64a51e10268bf.tar.xz |
minor refactoring. Change getName and GetVersion methods (yes the had different casings)
to Name and Version properties for the User stores.
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index 0a877f6..29bfe22 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -81,7 +81,7 @@ namespace OpenSim.Framework.Communications | |||
81 | public void AddPlugin(IUserData plug) | 81 | public void AddPlugin(IUserData plug) |
82 | { | 82 | { |
83 | plug.Initialise(); | 83 | plug.Initialise(); |
84 | _plugins.Add(plug.getName(), plug); | 84 | _plugins.Add(plug.Name, plug); |
85 | m_log.Info("[USERSTORAGE]: Added IUserData Interface"); | 85 | m_log.Info("[USERSTORAGE]: Added IUserData Interface"); |
86 | } | 86 | } |
87 | 87 | ||