diff options
author | Melanie | 2010-09-13 23:12:48 +0100 |
---|---|---|
committer | Melanie | 2010-09-13 23:33:55 +0100 |
commit | 96a2ce5db0b1e7d8c448cd5f247d6939c6e58f1b (patch) | |
tree | cf70cc454eee9f88f574d93eecc93de2f91ab0ca /OpenSim | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-96a2ce5db0b1e7d8c448cd5f247d6939c6e58f1b.zip opensim-SC_OLD-96a2ce5db0b1e7d8c448cd5f247d6939c6e58f1b.tar.gz opensim-SC_OLD-96a2ce5db0b1e7d8c448cd5f247d6939c6e58f1b.tar.bz2 opensim-SC_OLD-96a2ce5db0b1e7d8c448cd5f247d6939c6e58f1b.tar.xz |
Add a missing parenthesis
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/ConfigurationLoader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index b76e85d..6e3d6af 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs | |||
@@ -100,7 +100,7 @@ namespace OpenSim | |||
100 | 100 | ||
101 | if (masterFileName != String.Empty) | 101 | if (masterFileName != String.Empty) |
102 | { | 102 | { |
103 | if (File.Exists(masterFilePath) | 103 | if (File.Exists(masterFilePath)) |
104 | { | 104 | { |
105 | if (!sources.Contains(masterFilePath)) | 105 | if (!sources.Contains(masterFilePath)) |
106 | sources.Add(masterFilePath); | 106 | sources.Add(masterFilePath); |