From f2f88f5e3c84272427423dba4b0b62425b7435e9 Mon Sep 17 00:00:00 2001 From: Tom Conkling Date: Sat, 1 May 2010 02:37:31 +0000 Subject: [PATCH] Get rid of debugging code git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6064 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../presents/tools/ActionScriptSource.java | 13 ------------- 1 file changed, 13 deletions(-) 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 }