Update svn properties, minor formatting cleanup.

0.6.0-stable
Jeff Ames 2008-10-27 01:43:59 +00:00
parent a59ca765fe
commit b2d6b0a3d4
4 changed files with 21 additions and 21 deletions

View File

@ -101,7 +101,7 @@ namespace OpenSim.Grid.MessagingServer
private void deregisterFromUserServer() private void deregisterFromUserServer()
{ {
msgsvc.deregisterWithUserServer(); msgsvc.deregisterWithUserServer();
if(m_httpServer != null) if (m_httpServer != null)
{ {
// try a completely fresh registration, with fresh handlers, too // try a completely fresh registration, with fresh handlers, too
m_httpServer.Stop(); m_httpServer.Stop();

View File

View File

@ -306,7 +306,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
protected void AddToAttendeeList(ScenePresence agent, Scene scene) protected void AddToAttendeeList(ScenePresence agent, Scene scene)
{ {
lock(_sceneAttendees) lock (_sceneAttendees)
{ {
if (!_sceneAttendees.ContainsKey(scene)) if (!_sceneAttendees.ContainsKey(scene))
_sceneAttendees[scene] = new List<ScenePresence>(); _sceneAttendees[scene] = new List<ScenePresence>();
@ -318,7 +318,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Concierge
protected void RemoveFromAttendeeList(ScenePresence agent, Scene scene) protected void RemoveFromAttendeeList(ScenePresence agent, Scene scene)
{ {
lock(_sceneAttendees) lock (_sceneAttendees)
{ {
if (!_sceneAttendees.ContainsKey(scene)) if (!_sceneAttendees.ContainsKey(scene))
{ {