diff options
Diffstat (limited to 'OpenSim/Framework/Console/ConsoleBase.cs')
-rwxr-xr-x[-rw-r--r--] | OpenSim/Framework/Console/ConsoleBase.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs index 2d8e723..64cddea 100644..100755 --- a/OpenSim/Framework/Console/ConsoleBase.cs +++ b/OpenSim/Framework/Console/ConsoleBase.cs | |||
@@ -67,7 +67,7 @@ namespace OpenSim.Framework.Console | |||
67 | { | 67 | { |
68 | System.Console.WriteLine(text); | 68 | System.Console.WriteLine(text); |
69 | } | 69 | } |
70 | 70 | ||
71 | public virtual void OutputFormat(string format, params object[] components) | 71 | public virtual void OutputFormat(string format, params object[] components) |
72 | { | 72 | { |
73 | Output(string.Format(format, components)); | 73 | Output(string.Format(format, components)); |
@@ -86,7 +86,7 @@ namespace OpenSim.Framework.Console | |||
86 | 86 | ||
87 | return ret; | 87 | return ret; |
88 | } | 88 | } |
89 | 89 | ||
90 | public string CmdPrompt(string p, List<char> excludedCharacters) | 90 | public string CmdPrompt(string p, List<char> excludedCharacters) |
91 | { | 91 | { |
92 | bool itisdone = false; | 92 | bool itisdone = false; |
@@ -95,7 +95,7 @@ namespace OpenSim.Framework.Console | |||
95 | { | 95 | { |
96 | itisdone = true; | 96 | itisdone = true; |
97 | ret = CmdPrompt(p); | 97 | ret = CmdPrompt(p); |
98 | 98 | ||
99 | foreach (char c in excludedCharacters) | 99 | foreach (char c in excludedCharacters) |
100 | { | 100 | { |
101 | if (ret.Contains(c.ToString())) | 101 | if (ret.Contains(c.ToString())) |
@@ -117,7 +117,7 @@ namespace OpenSim.Framework.Console | |||
117 | { | 117 | { |
118 | itisdone = true; | 118 | itisdone = true; |
119 | ret = CmdPrompt(p, def); | 119 | ret = CmdPrompt(p, def); |
120 | 120 | ||
121 | if (ret == String.Empty) | 121 | if (ret == String.Empty) |
122 | { | 122 | { |
123 | ret = def; | 123 | ret = def; |