From 8a36a11a1de9552241c3857dc7ac4133fcf47e3f Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 2 Apr 2002 01:55:26 +0000 Subject: [PATCH] Moved CompiledConfig stuff into narya because it's generally useful. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1173 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/tools/CompiledConfigTask.java | 8 ++++---- .../com/threerings/tools/xml/CompiledConfigParser.java | 8 ++++---- src/java/com/threerings/util/CompiledConfig.java | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/java/com/threerings/tools/CompiledConfigTask.java b/src/java/com/threerings/tools/CompiledConfigTask.java index 0e3b3e802..0416c3e73 100644 --- a/src/java/com/threerings/tools/CompiledConfigTask.java +++ b/src/java/com/threerings/tools/CompiledConfigTask.java @@ -1,7 +1,7 @@ // -// $Id: CompiledConfigTask.java,v 1.1 2002/03/08 06:15:21 mdb Exp $ +// $Id: CompiledConfigTask.java,v 1.2 2002/04/02 01:55:26 mdb Exp $ -package com.threerings.yohoho.tools; +package com.threerings.tools; import java.io.File; import java.io.Serializable; @@ -9,8 +9,8 @@ import java.io.Serializable; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Task; -import com.threerings.yohoho.tools.xml.CompiledConfigParser; -import com.threerings.yohoho.util.CompiledConfig; +import com.threerings.tools.xml.CompiledConfigParser; +import com.threerings.util.CompiledConfig; /** * Used to parse configuration information from an XML file and create the diff --git a/src/java/com/threerings/tools/xml/CompiledConfigParser.java b/src/java/com/threerings/tools/xml/CompiledConfigParser.java index c7bb07516..5b07ceae5 100644 --- a/src/java/com/threerings/tools/xml/CompiledConfigParser.java +++ b/src/java/com/threerings/tools/xml/CompiledConfigParser.java @@ -1,7 +1,7 @@ // -// $Id: CompiledConfigParser.java,v 1.2 2002/03/08 09:40:21 mdb Exp $ +// $Id: CompiledConfigParser.java,v 1.3 2002/04/02 01:55:26 mdb Exp $ -package com.threerings.yohoho.tools.xml; +package com.threerings.tools.xml; import java.io.File; import java.io.FileInputStream; @@ -11,8 +11,8 @@ import java.io.Serializable; import org.xml.sax.SAXException; import org.apache.commons.digester.Digester; -import com.threerings.yohoho.util.CompiledConfig; -import com.threerings.yohoho.tools.CompiledConfigTask; +import com.threerings.util.CompiledConfig; +import com.threerings.tools.CompiledConfigTask; /** * An abstract base implementation of a parser that is used to compile diff --git a/src/java/com/threerings/util/CompiledConfig.java b/src/java/com/threerings/util/CompiledConfig.java index 8ba6cb0a3..5f35c4e32 100644 --- a/src/java/com/threerings/util/CompiledConfig.java +++ b/src/java/com/threerings/util/CompiledConfig.java @@ -1,7 +1,7 @@ // -// $Id: CompiledConfig.java,v 1.2 2002/03/08 08:30:05 mdb Exp $ +// $Id: CompiledConfig.java,v 1.3 2002/04/02 01:55:26 mdb Exp $ -package com.threerings.yohoho.util; +package com.threerings.util; import java.io.File; import java.io.FileOutputStream;