aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/Main.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-07-24 15:20:57 +0000
committerJustin Clarke Casey2008-07-24 15:20:57 +0000
commit29e8fcd13c99606813c916c4d464372572af230f (patch)
treee20c74b2f02d4c40e1d74c814715e2500cb116f9 /OpenSim/Grid/UserServer/Main.cs
parentUpdate svn properties. Minor formatting cleanup. (diff)
downloadopensim-SC_OLD-29e8fcd13c99606813c916c4d464372572af230f.zip
opensim-SC_OLD-29e8fcd13c99606813c916c4d464372572af230f.tar.gz
opensim-SC_OLD-29e8fcd13c99606813c916c4d464372572af230f.tar.bz2
opensim-SC_OLD-29e8fcd13c99606813c916c4d464372572af230f.tar.xz
* minor: Rename IInterGridInventoryServices since it's inter service rather than inter grid
Diffstat (limited to 'OpenSim/Grid/UserServer/Main.cs')
-rw-r--r--OpenSim/Grid/UserServer/Main.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs
index 30a41f4..4b4292d 100644
--- a/OpenSim/Grid/UserServer/Main.cs
+++ b/OpenSim/Grid/UserServer/Main.cs
@@ -54,7 +54,7 @@ namespace OpenSim.Grid.UserServer
54 public UserManager m_userManager; 54 public UserManager m_userManager;
55 public UserLoginService m_loginService; 55 public UserLoginService m_loginService;
56 public MessageServersConnector m_messagesService; 56 public MessageServersConnector m_messagesService;
57 protected IInventoryServices m_inventoryService; 57 protected IInterServiceInventoryServices m_interServiceInventoryService;
58 58
59 private LLUUID m_lastCreatedUser = LLUUID.Random(); 59 private LLUUID m_lastCreatedUser = LLUUID.Random();
60 60
@@ -103,7 +103,7 @@ namespace OpenSim.Grid.UserServer
103 m_loginService = new UserLoginService( 103 m_loginService = new UserLoginService(
104 m_userManager, new LibraryRootFolder(), Cfg, Cfg.DefaultStartupMsg); 104 m_userManager, new LibraryRootFolder(), Cfg, Cfg.DefaultStartupMsg);
105 105
106 m_inventoryService = new OGS1InventoryService(m_userManager._config.InventoryUrl); 106 m_interServiceInventoryService = new OGS1InventoryService(m_userManager._config.InventoryUrl);
107 107
108 m_messagesService = new MessageServersConnector(); 108 m_messagesService = new MessageServersConnector();
109 109
@@ -196,7 +196,7 @@ namespace OpenSim.Grid.UserServer
196 196
197 try 197 try
198 { 198 {
199 if (!m_inventoryService.CreateNewUserInventory(userID)) 199 if (!m_interServiceInventoryService.CreateNewUserInventory(userID))
200 { 200 {
201 throw new Exception( 201 throw new Exception(
202 String.Format( 202 String.Format(