mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
Update svn properties, formatting cleanup.
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -245,7 +245,7 @@ namespace OpenSim.Framework.Console
|
||||
try
|
||||
{
|
||||
string line = System.Console.ReadLine();
|
||||
|
||||
|
||||
while (line == null)
|
||||
{
|
||||
line = System.Console.ReadLine();
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user