diff options
author | lbsa71 | 2009-02-12 09:53:12 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 09:53:12 +0000 |
commit | 801da4346aeb3c08969c4845f5c595135a64470a (patch) | |
tree | 2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Framework/ConfigurationMember.cs | |
parent | Thanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff) | |
download | opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.zip opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2 opensim-SC-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz |
* optimized usings.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/ConfigurationMember.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/ConfigurationMember.cs b/OpenSim/Framework/ConfigurationMember.cs index b54aafb..1868168 100644 --- a/OpenSim/Framework/ConfigurationMember.cs +++ b/OpenSim/Framework/ConfigurationMember.cs | |||
@@ -288,7 +288,7 @@ namespace OpenSim.Framework | |||
288 | // if the first character is a "$", assume it's the name | 288 | // if the first character is a "$", assume it's the name |
289 | // of an environment variable and substitute with the value of that variable | 289 | // of an environment variable and substitute with the value of that variable |
290 | if (console_result.StartsWith("$")) | 290 | if (console_result.StartsWith("$")) |
291 | console_result = System.Environment.GetEnvironmentVariable(console_result.Substring(1)); | 291 | console_result = Environment.GetEnvironmentVariable(console_result.Substring(1)); |
292 | 292 | ||
293 | switch (configOption.configurationType) | 293 | switch (configOption.configurationType) |
294 | { | 294 | { |