Prune spurious semicolons

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5917 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Dave Hoover
2009-08-17 21:45:13 +00:00
parent a3b20e176b
commit b04e27f8fa
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -493,7 +493,7 @@ public class Streamer
}
/** Used to coerce the type system into quietude when reading enums from the wire. */
protected static enum EnumReader { NOT_USED };
protected static enum EnumReader { NOT_USED }
/** The class for which this streamer instance is configured. */
protected Class<?> _target;
@@ -40,7 +40,7 @@ public class ShutdownManager
}
/** Constraints for use with {@link ShutdownManager#addConstraint}. */
public static enum Constraint { RUNS_BEFORE, RUNS_AFTER };
public static enum Constraint { RUNS_BEFORE, RUNS_AFTER }
/**
* Registers an entity that will be notified when the server is shutting down.
@@ -1041,7 +1041,7 @@ public class ActionScriptSource
/** Denotes various phases of class file parsing. */
protected static enum Mode { PREAMBLE, IMPORTS, CLASSCOMMENT, CLASSDECL,
CLASSBODY, METHODBODY, POSTCLASS, POSTPKG };
CLASSBODY, METHODBODY, POSTCLASS, POSTPKG }
protected static Pattern JPACKAGE = Pattern.compile("package\\s+(\\S+);");