@@ -18,8 +18,7 @@ public interface IPropertylist
@Deprecated
public void loadHash_top(Hashtable h);
public void loadProperties_top(Properties pr);
- public boolean loadTextDB_top(String filename);
-
+
/* call the postprocessor */
public void runPostprocessor() throws EIllegalValue;
@@ -176,22 +176,6 @@ public class Propertylist implements IPropertylist
}
}
- public boolean loadTextDB_top(File filename)
- {
- return loadTextDB_top(filename.toString());
- }
-
- public boolean loadTextDB_top(String filename)
- {
- Properties pr = _load_properties(filename);
-
- if (pr==null)
- return false;
-
- loadHash_top(pr);
- return true;
- }
-
public void remove ( String key )
{
db.remove(key);