diff --git a/src/java/com/threerings/miso/util/MisoUtil.java b/src/java/com/threerings/miso/util/MisoUtil.java
index 1d4677bc4..74177fd21 100644
--- a/src/java/com/threerings/miso/util/MisoUtil.java
+++ b/src/java/com/threerings/miso/util/MisoUtil.java
@@ -1,5 +1,5 @@
//
-// $Id: MisoUtil.java,v 1.15 2001/11/18 04:09:23 mdb Exp $
+// $Id: MisoUtil.java,v 1.16 2001/11/29 00:19:03 mdb Exp $
package com.threerings.miso.util;
@@ -26,39 +26,4 @@ public class MisoUtil
{
config.bindProperties(CONFIG_KEY, "rsrc/config/miso/miso");
}
-
- /**
- * Creates a Config object that contains
- * configuration parameters for miso.
- */
- public static Config createConfig ()
- {
- return createConfig(null, null);
- }
-
- /**
- * Creates a Config object that contains
- * configuration parameters for miso. If key and
- * path are non-null, the properties in
- * the given file will additionally be bound to the specified
- * config key namespace.
- */
- public static Config createConfig (String key, String path)
- {
- Config config = new Config();
- try {
- // load the miso config info
- bindProperties(config);
-
- if (key != null && path != null) {
- // load the application-specific config info
- config.bindProperties(key, path);
- }
-
- } catch (IOException ioe) {
- Log.warning("Error loading config information [e=" + ioe + "].");
- }
-
- return config;
- }
}