From 8da726c3a8a3ab983fc11ad890a0b91016c86a1f Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Sun, 9 Nov 2008 01:31:38 +0000
Subject: Update svn properties. Add copyright headers. Minor formatting
cleanup.
---
OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 +-
OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs | 2 +-
.../Environment/Modules/Avatar/InstantMessage/InstantMessageModule.cs | 2 +-
OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
(limited to 'OpenSim/Region')
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 3a9c17e..c953228 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -7661,7 +7661,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
///
protected void RegisterInterface(T iface)
{
- lock(m_clientInterfaces)
+ lock (m_clientInterfaces)
{
m_clientInterfaces.Add(typeof(T), iface);
}
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
index bb2d270..194d1b4 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
@@ -259,7 +259,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public void WipeClean()
{
m_log.Info("[PACKETQUEUE] Wiping Packet Queues Clean");
- lock(this)
+ lock (this)
{
ResendOutgoingPacketQueue.Clear();
LandOutgoingPacketQueue.Clear();
diff --git a/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/InstantMessageModule.cs b/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/InstantMessageModule.cs
index eb82ad7..0698b9a 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/InstantMessageModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/InstantMessage/InstantMessageModule.cs
@@ -84,7 +84,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.InstantMessage
void OnClientConnect(IClientCore client)
{
IClientIM clientIM;
- if(client.TryGet(out clientIM))
+ if (client.TryGet(out clientIM))
{
clientIM.OnInstantMessage += OnInstantMessage;
}
diff --git a/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs b/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs
index 2235be0..badb4e3 100644
--- a/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/Environment/Modules/World/Land/LandManagementModule.cs
@@ -1335,7 +1335,7 @@ namespace OpenSim.Region.Environment.Modules.World.Land
m_landList.TryGetValue(localID, out land);
}
- if(land == null) return;
+ if (land == null) return;
if (!m_scene.ExternalChecks.ExternalChecksCanEditParcel(remoteClient.AgentId, land))
return;
--
cgit v1.1