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/ApplicationPlugins | |
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 'OpenSim/ApplicationPlugins')
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 6f82181..e540e4d 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -267,7 +267,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
267 | } | 267 | } |
268 | 268 | ||
269 | 269 | ||
270 | private void checkStringParameters(XmlRpcRequest request, string[] param) | 270 | private static void checkStringParameters(XmlRpcRequest request, string[] param) |
271 | { | 271 | { |
272 | Hashtable requestData = (Hashtable) request.Params[0]; | 272 | Hashtable requestData = (Hashtable) request.Params[0]; |
273 | foreach (string p in param) | 273 | foreach (string p in param) |
@@ -279,7 +279,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
279 | } | 279 | } |
280 | } | 280 | } |
281 | 281 | ||
282 | private void checkIntegerParams(XmlRpcRequest request, string[] param) | 282 | private static void checkIntegerParams(XmlRpcRequest request, string[] param) |
283 | { | 283 | { |
284 | Hashtable requestData = (Hashtable) request.Params[0]; | 284 | Hashtable requestData = (Hashtable) request.Params[0]; |
285 | foreach (string p in param) | 285 | foreach (string p in param) |