--- old/src/share/classes/javax/swing/text/html/parser/ContentModelState.java 2014-04-08 15:39:44.000000000 -0700 +++ new/src/share/classes/javax/swing/text/html/parser/ContentModelState.java 2014-04-08 15:39:44.000000000 -0700 @@ -92,12 +92,14 @@ * tokens required in the input stream. * @return true if the model can terminate without further input */ + @SuppressWarnings("fallthrough") public boolean terminate() { switch (model.type) { case '+': if ((value == 0) && !(model).empty()) { return false; } + // Fall through okay? case '*': case '?': return (next == null) || next.terminate();