Update svn properties, formatting cleanup.

This commit is contained in:
Jeff Ames
2008-08-19 02:59:27 +00:00
parent 6d2e1ad6ba
commit bea7d4d81a
17 changed files with 78 additions and 177 deletions

View File

@@ -363,7 +363,7 @@ namespace OpenSim.Framework
h["skirt_asset"] = SkirtAsset.ToString();
string attachments = GetAttachmentsString();
if(attachments != String.Empty)
if (attachments != String.Empty)
h["attachments"] = attachments;
return h;
@@ -411,7 +411,7 @@ namespace OpenSim.Framework
SkirtItem = new LLUUID((string)h["skirt_item"]);
SkirtAsset = new LLUUID((string)h["skirt_asset"]);
if(h.ContainsKey("attachments"))
if (h.ContainsKey("attachments"))
{
SetAttachmentsString(h["attachments"].ToString());
}
@@ -441,7 +441,7 @@ namespace OpenSim.Framework
{
m_attachments.Clear();
if(data == null)
if (data == null)
return;
foreach (DictionaryEntry e in data)
@@ -468,7 +468,7 @@ namespace OpenSim.Framework
public Hashtable GetAttachments()
{
if(m_attachments.Count == 0)
if (m_attachments.Count == 0)
return null;
Hashtable ret = new Hashtable();

View File

@@ -245,7 +245,7 @@ namespace OpenSim.Framework.Console
try
{
string line = System.Console.ReadLine();
while (line == null)
{
line = System.Console.ReadLine();

View File

@@ -255,8 +255,8 @@ namespace OpenSim.Framework.Servers
SetConsoleLogLevel(setParams);
}
}
}
/// <summary>
/// Show help information
/// </summary>
@@ -270,7 +270,7 @@ namespace OpenSim.Framework.Servers
//Notice("help [command] - display general help or specific command help. Try help help for more info.");
Notice("quit - equivalent to shutdown.");
Notice("set log level [level] - change the console logging level only. For example, off or debug.");
Notice("set log level [level] - change the console logging level only. For example, off or debug.");
Notice("show info - show server information (e.g. startup path).");
if (m_stats != null)
@@ -280,7 +280,7 @@ namespace OpenSim.Framework.Servers
Notice("show uptime - show server startup time and uptime.");
Notice("show version - show server version.");
Notice("shutdown - shutdown the server.\n");
return;
}
}