mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 11:57:03 +08:00
Update svn properties. Add copyright headers. Minor formatting cleanup.
This commit is contained in:
@@ -7661,7 +7661,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
/// <param name="iface"></param>
|
||||
protected void RegisterInterface<T>(T iface)
|
||||
{
|
||||
lock(m_clientInterfaces)
|
||||
lock (m_clientInterfaces)
|
||||
{
|
||||
m_clientInterfaces.Add(typeof(T), iface);
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user