Update svn properties, minor formatting cleanup.
parent
a59ca765fe
commit
b2d6b0a3d4
|
@ -1,5 +1,5 @@
|
|||
BEGIN TRANSACTION
|
||||
|
||||
ALTER TABLE prims ADD Material tinyint NOT NULL default 3
|
||||
|
||||
COMMIT
|
||||
BEGIN TRANSACTION
|
||||
|
||||
ALTER TABLE prims ADD Material tinyint NOT NULL default 3
|
||||
|
||||
COMMIT
|
||||
|
|
|
@ -101,7 +101,7 @@ namespace OpenSim.Grid.MessagingServer
|
|||
private void deregisterFromUserServer()
|
||||
{
|
||||
msgsvc.deregisterWithUserServer();
|
||||
if(m_httpServer != null)
|
||||
if (m_httpServer != null)
|
||||
{
|
||||
// try a completely fresh registration, with fresh handlers, too
|
||||
m_httpServer.Stop();
|
||||
|
|
|
@ -89,18 +89,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
|
|||
OnReceivedData(result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Has a circuit with the given code been established?
|
||||
/// </summary>
|
||||
/// <param name="circuitCode"></param>
|
||||
/// <returns></returns>
|
||||
public bool HasCircuit(uint circuitCode)
|
||||
{
|
||||
lock (clientCircuits_reverse)
|
||||
{
|
||||
return clientCircuits_reverse.ContainsKey(circuitCode);
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Has a circuit with the given code been established?
|
||||
/// </summary>
|
||||
/// <param name="circuitCode"></param>
|
||||
/// <returns></returns>
|
||||
public bool HasCircuit(uint circuitCode)
|
||||
{
|
||||
lock (clientCircuits_reverse)
|
||||
{
|
||||
return clientCircuits_reverse.ContainsKey(circuitCode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -306,7 +306,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
|
|||
|
||||
protected void AddToAttendeeList(ScenePresence agent, Scene scene)
|
||||
{
|
||||
lock(_sceneAttendees)
|
||||
lock (_sceneAttendees)
|
||||
{
|
||||
if (!_sceneAttendees.ContainsKey(scene))
|
||||
_sceneAttendees[scene] = new List<ScenePresence>();
|
||||
|
@ -318,7 +318,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
|
|||
|
||||
protected void RemoveFromAttendeeList(ScenePresence agent, Scene scene)
|
||||
{
|
||||
lock(_sceneAttendees)
|
||||
lock (_sceneAttendees)
|
||||
{
|
||||
if (!_sceneAttendees.ContainsKey(scene))
|
||||
{
|
||||
|
@ -495,4 +495,4 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
|
|||
return response;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue