diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index e4eb3c8ea..9802f3b9f 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -42,8 +42,6 @@ import com.samskivert.util.StringUtil; import com.threerings.util.ActionScript; -import static com.threerings.NaryaLog.log; - /** * Primitively parses an ActionScriptSource file, allows the addition and replacement of class * members and handles writing out the file again. @@ -1056,17 +1054,6 @@ public class ActionScriptSource return true; } - public static void main (String[] args) - { - test("public function asdf () :void"); - test("public function get asdf () :void"); - } - - protected static void test (String test) - { - log.info("test", "string", test, "matches", ASFUNCTION.matcher(test).matches()); - } - /** Denotes various phases of class file parsing. */ protected static enum Mode { PREAMBLE, IMPORTS, CLASSCOMMENT, CLASSDECL, CLASSBODY, METHODBODY, POSTCLASS, POSTPKG }