@@ -12,9 +12,6 @@ public interface IPropertylist
public String dump();
public void loadProperties_sub(Properties pr);
-
- @Deprecated
- public void loadHash_top(Hashtable h);
public void loadProperties_top(Properties pr);
/* call the postprocessor */
@@ -88,21 +88,6 @@ public class Propertylist implements IPropertylist
cache.clear();
}
- @Deprecated
- public void loadHash_top(Hashtable h)
- {
- for (Enumeration e = h.keys(); e.hasMoreElements(); )
- {
- String key = (String) e.nextElement();
- if (key.startsWith("!!"))
- set(key.substring(2),(String)h.get(key));
- else if (key.startsWith("++"))
- add(key.substring(2),(String)h.get(key));
- else
- set(key,(String)h.get(key));
- }
- }
-
public void loadProperties_top(Properties pr)
{
for (Enumeration e = pr.keys(); e.hasMoreElements(); )