diff options
* 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 | { |