From 667dfb85443b5b9441c3e8dac878b7ba2a63f399 Mon Sep 17 00:00:00 2001 From: hns Date: Mon, 11 Nov 2002 18:59:57 +0000 Subject: [PATCH] Load additional properties through an instance of SystemProperties so the keys are transformed to lowercase. Otherwise lookup will not work for keys that contain upper case characters. --- src/helma/util/SystemProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/util/SystemProperties.java b/src/helma/util/SystemProperties.java index 041c3922..6c51aaed 100644 --- a/src/helma/util/SystemProperties.java +++ b/src/helma/util/SystemProperties.java @@ -141,7 +141,7 @@ public final class SystemProperties extends Properties { * of discarding them. */ public synchronized void addProps (String key, InputStream in) throws IOException { - Properties p = new Properties(); + Properties p = new SystemProperties(); p.load (in); if (additionalProps == null) additionalProps = new HashMap ();