aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserServerCommandModule.cs
diff options
context:
space:
mode:
authorMW2009-02-25 19:39:56 +0000
committerMW2009-02-25 19:39:56 +0000
commitc856da2ee6634762951312b160ef1f85634d6c89 (patch)
treef4775f60a9a6de46d9612a57b3b437605576a56d /OpenSim/Grid/UserServer/UserServerCommandModule.cs
parentAdded IGridServiceModule to be the base interface for the Service Modules for... (diff)
downloadopensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.zip
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.gz
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.bz2
opensim-SC_OLD-c856da2ee6634762951312b160ef1f85634d6c89.tar.xz
Renamed IUGAIMCore to IGridServiceCore, still not really happy with this name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/UserServer/UserServerCommandModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserServerCommandModule.cs b/OpenSim/Grid/UserServer/UserServerCommandModule.cs
index a6f8af2..7f7108c 100644
--- a/OpenSim/Grid/UserServer/UserServerCommandModule.cs
+++ b/OpenSim/Grid/UserServer/UserServerCommandModule.cs
@@ -57,13 +57,13 @@ namespace OpenSim.Grid.UserServer
57 57
58 protected UUID m_lastCreatedUser = UUID.Random(); 58 protected UUID m_lastCreatedUser = UUID.Random();
59 59
60 protected IUGAIMCore m_core; 60 protected IGridServiceCore m_core;
61 61
62 public UserServerCommandModule() 62 public UserServerCommandModule()
63 { 63 {
64 } 64 }
65 65
66 public void Initialise(IUGAIMCore core) 66 public void Initialise(IGridServiceCore core)
67 { 67 {
68 m_core = core; 68 m_core = core;
69 } 69 }