[Opensim-dev] Wholesale reformatting of files (UNCLASSIFIED)

M.E. Verhagen marceled9 at gmail.com
Thu May 28 22:18:36 UTC 2015


The code looks ok, but a bit stange.

if (sp == null) m_log.WarnFormat( "[SCENE PRESENCE]: Did not find presence
with id {0} in {1} before timeout", agentID, RegionInfo.RegionName); I
would rather write this on one line:
if (sp == null) m_log.WarnFormat("[SCENE PRESENCE]: Did not find presence
with id {0} in {1} before timeout", agentID, RegionInfo.RegionName); Or
break it up in multiple lines like this: (with on every line an other
parameter if it makes the code better readable)

if (sp == null) { m_log.WarnFormat( "[SCENE PRESENCE]: Did not find
presence with id {0} in {1} before timeout", agentID,
RegionInfo.RegionName); }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://opensimulator.org/pipermail/opensim-dev/attachments/20150529/f1e72ac6/attachment-0001.html>


More information about the Opensim-dev mailing list