Fixed dependance on JDK 1.4 (shame on me! :-)

This commit is contained in:
Oliver Burn 2002-08-27 04:21:38 +00:00
parent a021a7e165
commit f45a53a37f
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ public class Configuration
for (int i = 0; i < Defn.ALL_BOOLEAN_PROPS.length; i++) {
final String key = Defn.ALL_BOOLEAN_PROPS[i];
retVal.put(key, Boolean.toString(getBooleanProperty(key)));
retVal.put(key, String.valueOf(getBooleanProperty(key)));
}
for (int i = 0; i < Defn.ALL_PATTERN_PROPS.length; i++) {