mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 18:25:33 +08:00
Update svn properties, minor formatting cleanup.
This commit is contained in:
@@ -54,7 +54,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory
|
||||
|
||||
public void Initialise(Scene scene, IConfigSource config)
|
||||
{
|
||||
if(!m_Scenelist.Contains(scene))
|
||||
if (!m_Scenelist.Contains(scene))
|
||||
{
|
||||
m_Scenelist.Add(scene);
|
||||
|
||||
|
||||
@@ -148,7 +148,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
public void DeselectPrim(uint primLocalID, IClientAPI remoteClient)
|
||||
{
|
||||
SceneObjectPart part = GetSceneObjectPart(primLocalID);
|
||||
if(part == null)
|
||||
if (part == null)
|
||||
return;
|
||||
|
||||
bool isAttachment = false;
|
||||
@@ -159,7 +159,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
//
|
||||
if (part.ParentGroup == null)
|
||||
{
|
||||
if(part.IsAttachment)
|
||||
if (part.IsAttachment)
|
||||
isAttachment = true;
|
||||
else
|
||||
part.ScheduleFullUpdate();
|
||||
|
||||
@@ -1177,7 +1177,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
public void ClearUndoState()
|
||||
{
|
||||
lock(m_undo)
|
||||
lock (m_undo)
|
||||
{
|
||||
m_undo.Clear();
|
||||
}
|
||||
@@ -2449,7 +2449,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
{
|
||||
if (m_parentGroup != null)
|
||||
{
|
||||
lock(m_undo)
|
||||
lock (m_undo)
|
||||
{
|
||||
if (m_undo.Count > 0)
|
||||
{
|
||||
@@ -2958,7 +2958,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||
|
||||
public void Undo()
|
||||
{
|
||||
lock(m_undo)
|
||||
lock (m_undo)
|
||||
{
|
||||
if (m_undo.Count > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user