mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Update svn properties, minor formatting cleanup.
This commit is contained in:
@@ -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();
|
||||
|
||||
24
OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
Executable file → Normal file
24
OpenSim/Region/ClientStack/LindenUDP/Tests/TestLLUDPServer.cs
Executable file → Normal file
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user