diff options
author | Adam Frisby | 2008-05-01 16:03:53 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 16:03:53 +0000 |
commit | 523190377861292dfecdaddebe1204301a0c7912 (patch) | |
tree | c003fa3c03389fc2d701d6797557c693a4eb29fc /OpenSim/Region/Application/OpenSimMainConsole.cs | |
parent | Add basic OS X support to LaunchSLClient (diff) | |
download | opensim-SC_OLD-523190377861292dfecdaddebe1204301a0c7912.zip opensim-SC_OLD-523190377861292dfecdaddebe1204301a0c7912.tar.gz opensim-SC_OLD-523190377861292dfecdaddebe1204301a0c7912.tar.bz2 opensim-SC_OLD-523190377861292dfecdaddebe1204301a0c7912.tar.xz |
* In ur code. Making it static.
* Converted a bunch of functions to static functions.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSimMainConsole.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimMainConsole.cs b/OpenSim/Region/Application/OpenSimMainConsole.cs index ac5a1ec..e727d63 100644 --- a/OpenSim/Region/Application/OpenSimMainConsole.cs +++ b/OpenSim/Region/Application/OpenSimMainConsole.cs | |||
@@ -172,7 +172,7 @@ namespace OpenSim | |||
172 | } | 172 | } |
173 | } | 173 | } |
174 | 174 | ||
175 | private void PrintFileToConsole(string fileName) | 175 | private static void PrintFileToConsole(string fileName) |
176 | { | 176 | { |
177 | if (File.Exists(fileName)) | 177 | if (File.Exists(fileName)) |
178 | { | 178 | { |
@@ -690,7 +690,7 @@ namespace OpenSim | |||
690 | } | 690 | } |
691 | } | 691 | } |
692 | 692 | ||
693 | private string CombineParams(string[] commandParams, int pos) | 693 | private static string CombineParams(string[] commandParams, int pos) |
694 | { | 694 | { |
695 | string result = String.Empty; | 695 | string result = String.Empty; |
696 | for (int i = pos; i < commandParams.Length; i++) | 696 | for (int i = pos; i < commandParams.Length; i++) |