diff options
Diffstat (limited to 'OpenSim/Framework/ConfigurationMember.cs')
-rw-r--r-- | OpenSim/Framework/ConfigurationMember.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Framework/ConfigurationMember.cs b/OpenSim/Framework/ConfigurationMember.cs index 4ae59d6..7590495 100644 --- a/OpenSim/Framework/ConfigurationMember.cs +++ b/OpenSim/Framework/ConfigurationMember.cs | |||
@@ -44,8 +44,8 @@ namespace OpenSim.Framework | |||
44 | public delegate void ConfigurationOptionsLoad(); | 44 | public delegate void ConfigurationOptionsLoad(); |
45 | 45 | ||
46 | private List<ConfigurationOption> configurationOptions = new List<ConfigurationOption>(); | 46 | private List<ConfigurationOption> configurationOptions = new List<ConfigurationOption>(); |
47 | private string configurationFilename = ""; | 47 | private string configurationFilename = String.Empty; |
48 | private string configurationDescription = ""; | 48 | private string configurationDescription = String.Empty; |
49 | private XmlNode configurationFromXMLNode = null; | 49 | private XmlNode configurationFromXMLNode = null; |
50 | private ConfigurationOptionsLoad loadFunction; | 50 | private ConfigurationOptionsLoad loadFunction; |
51 | private ConfigurationOptionResult resultFunction; | 51 | private ConfigurationOptionResult resultFunction; |
@@ -70,7 +70,7 @@ namespace OpenSim.Framework | |||
70 | public ConfigurationMember(XmlNode configuration_xml, string configuration_description, | 70 | public ConfigurationMember(XmlNode configuration_xml, string configuration_description, |
71 | ConfigurationOptionsLoad load_function, ConfigurationOptionResult result_function, bool use_console_to_prompt_on_error) | 71 | ConfigurationOptionsLoad load_function, ConfigurationOptionResult result_function, bool use_console_to_prompt_on_error) |
72 | { | 72 | { |
73 | configurationFilename = ""; | 73 | configurationFilename = String.Empty; |
74 | configurationFromXMLNode = configuration_xml; | 74 | configurationFromXMLNode = configuration_xml; |
75 | configurationDescription = configuration_description; | 75 | configurationDescription = configuration_description; |
76 | loadFunction = load_function; | 76 | loadFunction = load_function; |
@@ -100,8 +100,8 @@ namespace OpenSim.Framework | |||
100 | 100 | ||
101 | private void checkAndAddConfigOption(ConfigurationOption option) | 101 | private void checkAndAddConfigOption(ConfigurationOption option) |
102 | { | 102 | { |
103 | if ((option.configurationKey != "" && option.configurationQuestion != "") || | 103 | if ((option.configurationKey != String.Empty && option.configurationQuestion != String.Empty) || |
104 | (option.configurationKey != "" && option.configurationUseDefaultNoPrompt)) | 104 | (option.configurationKey != String.Empty && option.configurationUseDefaultNoPrompt)) |
105 | { | 105 | { |
106 | if (!configurationOptions.Contains(option)) | 106 | if (!configurationOptions.Contains(option)) |
107 | { | 107 | { |
@@ -190,7 +190,7 @@ namespace OpenSim.Framework | |||
190 | return; | 190 | return; |
191 | } | 191 | } |
192 | 192 | ||
193 | if (configurationFilename.Trim() != "") | 193 | if (configurationFilename.Trim() != String.Empty) |
194 | { | 194 | { |
195 | configurationPlugin.SetFileName(configurationFilename); | 195 | configurationPlugin.SetFileName(configurationFilename); |
196 | try | 196 | try |
@@ -220,11 +220,11 @@ namespace OpenSim.Framework | |||
220 | { | 220 | { |
221 | bool convertSuccess = false; | 221 | bool convertSuccess = false; |
222 | object return_result = null; | 222 | object return_result = null; |
223 | string errorMessage = ""; | 223 | string errorMessage = String.Empty; |
224 | bool ignoreNextFromConfig = false; | 224 | bool ignoreNextFromConfig = false; |
225 | while (convertSuccess == false) | 225 | while (convertSuccess == false) |
226 | { | 226 | { |
227 | string console_result = ""; | 227 | string console_result = String.Empty; |
228 | string attribute = null; | 228 | string attribute = null; |
229 | if (useFile || configurationFromXMLNode != null) | 229 | if (useFile || configurationFromXMLNode != null) |
230 | { | 230 | { |
@@ -250,7 +250,7 @@ namespace OpenSim.Framework | |||
250 | configOption.shouldIBeAsked(configOption.configurationKey)) || | 250 | configOption.shouldIBeAsked(configOption.configurationKey)) || |
251 | configOption.shouldIBeAsked == null) | 251 | configOption.shouldIBeAsked == null) |
252 | { | 252 | { |
253 | if (configurationDescription.Trim() != "") | 253 | if (configurationDescription.Trim() != String.Empty) |
254 | { | 254 | { |
255 | console_result = | 255 | console_result = |
256 | MainLog.Instance.CmdPrompt( | 256 | MainLog.Instance.CmdPrompt( |