Update svn properties, minor formatting cleanup.

This commit is contained in:
Jeff Ames
2008-08-16 17:26:25 +00:00
parent 80186a68df
commit 6fa26f5b41
11 changed files with 192 additions and 192 deletions

View File

@@ -65,7 +65,7 @@ namespace OpenSim.Framework.Communications.Cache
/// <param name="userID"></param>
public void AddNewUser(LLUUID userID)
{
if(userID == LLUUID.Zero)
if (userID == LLUUID.Zero)
return;
m_log.DebugFormat("[USER CACHE]: Adding user profile for {0}", userID);
GetUserDetails(userID);
@@ -132,7 +132,7 @@ namespace OpenSim.Framework.Communications.Cache
/// <returns>null if no user details are found</returns>
public CachedUserInfo GetUserDetails(LLUUID userID)
{
if(userID == LLUUID.Zero)
if (userID == LLUUID.Zero)
return null;
lock (m_userProfiles)