From bd285bafc7d74e2ac3949dac812bdc8c8ef33c88 Mon Sep 17 00:00:00 2001 From: Dave Hoover Date: Mon, 21 Jul 2008 18:24:04 +0000 Subject: [PATCH] Teach that switch statement about all values for that enum. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5243 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/tools/ActionScriptSource.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index d5eafd7b4..5444d10ea 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -652,6 +652,10 @@ public class ActionScriptSource case POSTCLASS: System.err.println("J: Post-class junk: " + line); break; + + case POSTPKG: + System.err.println("J: Post-pkg junk: " + line); + break; } } bin.close();