Update svn properties, minor formatting cleanup.

0.6.0-stable
Jeff Ames 2008-08-19 22:41:39 +00:00
parent b28bac016a
commit 07b04213d7
4 changed files with 5 additions and 5 deletions

View File

@ -1007,7 +1007,7 @@ namespace OpenSim.Data.SQLite
// return true;
}
override public void ResetAttachments(LLUUID userID)
{
}

View File

@ -235,7 +235,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory
if (!m_AgentRegions.ContainsKey(agentID))
return true;
if(m_AgentRegions[agentID] == scene)
if (m_AgentRegions[agentID] == scene)
{
m_AgentRegions.Remove(agentID);
return true;

View File

@ -3863,7 +3863,7 @@ namespace OpenSim.Region.Environment.Scenes
public void SetRootAgentScene(LLUUID agentID)
{
IInventoryModule inv = RequestModuleInterface<IInventoryModule>();
if(inv == null)
if (inv == null)
return;
inv.SetRootAgentScene(agentID, this);
@ -3872,7 +3872,7 @@ namespace OpenSim.Region.Environment.Scenes
public bool NeedSceneCacheClear(LLUUID agentID)
{
IInventoryModule inv = RequestModuleInterface<IInventoryModule>();
if(inv == null)
if (inv == null)
return true;
return inv.NeedSceneCacheClear(agentID, this);

View File

@ -2014,7 +2014,7 @@ namespace OpenSim.Region.Environment.Scenes
m_scene.NotifyMyCoarseLocationChange();
// the user may change their profile information in other region,
// so the userinfo in UserProfileCache is not reliable any more, delete it
if(m_scene.NeedSceneCacheClear(UUID))
if (m_scene.NeedSceneCacheClear(UUID))
m_scene.CommsManager.UserProfileCacheService.RemoveUser(UUID);
m_log.InfoFormat("User {0} is going to another region, profile cache removed", UUID);
}