diff --git a/src/org/jitsi/impl/configuration/SortedProperties.java b/src/org/jitsi/impl/configuration/SortedProperties.java index 98c827110abad941bd0da5f61bc6569c1c1a9e4f..8859c039b8732239384b6be673b8e7744d2df431 100644 --- a/src/org/jitsi/impl/configuration/SortedProperties.java +++ b/src/org/jitsi/impl/configuration/SortedProperties.java @@ -48,4 +48,23 @@ public Object nextElement() } }; } + + /** + * Do not allow putting empty String keys in the properties table. + * @param key the key + * @param value the value + * @return the previous value of the specified key in this hashtable, + * or <code>null</code> if it did not have one + */ + public synchronized Object put(Object key, Object value) + { + if(key instanceof String + && ((String)key).trim().length() == 0) + { + // just skip the putting + return null; + } + + return super.put(key, value); + } }