aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.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/Framework/Communications/CommunicationsManager.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/Framework/Communications/CommunicationsManager.cs')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index 6272872..3659d86 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -88,11 +88,11 @@ namespace OpenSim.Framework.Communications
88 } 88 }
89 protected AssetCache m_assetCache; 89 protected AssetCache m_assetCache;
90 90
91 public IInterGridInventoryServices InterGridInventoryService 91 public IInterServiceInventoryServices InterServiceInventoryService
92 { 92 {
93 get { return m_interGridInventoryService; } 93 get { return m_interServiceInventoryService; }
94 } 94 }
95 protected IInterGridInventoryServices m_interGridInventoryService; 95 protected IInterServiceInventoryServices m_interServiceInventoryService;
96 96
97 public NetworkServersInfo NetworkServersInfo 97 public NetworkServersInfo NetworkServersInfo
98 { 98 {
@@ -296,7 +296,7 @@ namespace OpenSim.Framework.Communications
296 } 296 }
297 else 297 else
298 { 298 {
299 InventoryService.CreateNewUserInventory(userProf.ID); 299 InterServiceInventoryService.CreateNewUserInventory(userProf.ID);
300 m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName); 300 m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName);
301 return userProf.ID; 301 return userProf.ID;
302 } 302 }