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.
This commit is contained in:
parent
62d38fcef6
commit
667dfb8544
1 changed files with 1 additions and 1 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue