mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
More formatting cleanup.
This commit is contained in:
@@ -159,7 +159,7 @@ namespace OpenSim.Framework
|
||||
return; // packet pool disabled
|
||||
|
||||
/* // Commented out to remove a compiler warning. :)
|
||||
lock(pool)
|
||||
lock (pool)
|
||||
{
|
||||
PacketType type=packet.Type;
|
||||
|
||||
|
||||
@@ -372,8 +372,14 @@ namespace OpenSim.Framework.Servers
|
||||
LLSD llsdRequest = null;
|
||||
LLSD llsdResponse = null;
|
||||
|
||||
try { llsdRequest = LLSDParser.DeserializeXml(requestBody); }
|
||||
catch (Exception ex) { m_log.Warn("[HTTPD]: Error - " + ex.Message); }
|
||||
try
|
||||
{
|
||||
llsdRequest = LLSDParser.DeserializeXml(requestBody);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
m_log.Warn("[HTTPD]: Error - " + ex.Message);
|
||||
}
|
||||
|
||||
if (llsdRequest != null && m_llsdHandler != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user