Update svn properties, minor formatting cleanup.

0.6.0-stable
Jeff Ames 2008-08-17 23:07:14 +00:00
parent 35dde94f01
commit 531f6c01eb
5 changed files with 49 additions and 49 deletions

View File

@ -495,7 +495,7 @@ namespace Opensim.Framework
public void Invalidate(LLUUID uuid) public void Invalidate(LLUUID uuid)
{ {
if(!m_Lookup.ContainsKey(uuid)) if (!m_Lookup.ContainsKey(uuid))
return; return;
CacheItemBase item = m_Lookup[uuid]; CacheItemBase item = m_Lookup[uuid];

View File

@ -54,7 +54,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory
public void Initialise(Scene scene, IConfigSource config) public void Initialise(Scene scene, IConfigSource config)
{ {
if(!m_Scenelist.Contains(scene)) if (!m_Scenelist.Contains(scene))
{ {
m_Scenelist.Add(scene); m_Scenelist.Add(scene);

View File

@ -148,7 +148,7 @@ namespace OpenSim.Region.Environment.Scenes
public void DeselectPrim(uint primLocalID, IClientAPI remoteClient) public void DeselectPrim(uint primLocalID, IClientAPI remoteClient)
{ {
SceneObjectPart part = GetSceneObjectPart(primLocalID); SceneObjectPart part = GetSceneObjectPart(primLocalID);
if(part == null) if (part == null)
return; return;
bool isAttachment = false; bool isAttachment = false;
@ -159,7 +159,7 @@ namespace OpenSim.Region.Environment.Scenes
// //
if (part.ParentGroup == null) if (part.ParentGroup == null)
{ {
if(part.IsAttachment) if (part.IsAttachment)
isAttachment = true; isAttachment = true;
else else
part.ScheduleFullUpdate(); part.ScheduleFullUpdate();

View File

@ -1177,7 +1177,7 @@ namespace OpenSim.Region.Environment.Scenes
public void ClearUndoState() public void ClearUndoState()
{ {
lock(m_undo) lock (m_undo)
{ {
m_undo.Clear(); m_undo.Clear();
} }
@ -2449,7 +2449,7 @@ namespace OpenSim.Region.Environment.Scenes
{ {
if (m_parentGroup != null) if (m_parentGroup != null)
{ {
lock(m_undo) lock (m_undo)
{ {
if (m_undo.Count > 0) if (m_undo.Count > 0)
{ {
@ -2958,7 +2958,7 @@ namespace OpenSim.Region.Environment.Scenes
public void Undo() public void Undo()
{ {
lock(m_undo) lock (m_undo)
{ {
if (m_undo.Count > 0) if (m_undo.Count > 0)
{ {

View File

@ -5556,7 +5556,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
string ph = rules.Data[idx++].ToString(); string ph = rules.Data[idx++].ToString();
bool phantom; bool phantom;
if(ph.Equals("1")) if (ph.Equals("1"))
phantom = true; phantom = true;
else else
phantom = false; phantom = false;
@ -5570,7 +5570,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
string phy = rules.Data[idx++].ToString(); string phy = rules.Data[idx++].ToString();
bool physics; bool physics;
if(phy.Equals("1")) if (phy.Equals("1"))
physics = true; physics = true;
else else
physics = false; physics = false;