diff -r 33de7752835c -r 94bb65cb37d3 src/java.base/share/classes/java/text/ChoiceFormat.java --- a/src/java.base/share/classes/java/text/ChoiceFormat.java Fri Sep 20 11:33:30 2019 +0800 +++ b/src/java.base/share/classes/java/text/ChoiceFormat.java Fri Sep 20 11:07:52 2019 +0100 @@ -174,7 +174,7 @@ /** * Sets the pattern. * @param newPattern See the class description. - * @exception NullPointerException if {@code newPattern} + * @throws NullPointerException if {@code newPattern} * is {@code null} */ public void applyPattern(String newPattern) { @@ -313,7 +313,7 @@ * Constructs with limits and corresponding formats based on the pattern. * * @param newPattern the new pattern string - * @exception NullPointerException if {@code newPattern} is + * @throws NullPointerException if {@code newPattern} is * {@code null} * @see #applyPattern */ @@ -326,7 +326,7 @@ * * @param limits limits in ascending order * @param formats corresponding format strings - * @exception NullPointerException if {@code limits} or {@code formats} + * @throws NullPointerException if {@code limits} or {@code formats} * is {@code null} * @see #setChoices */ @@ -347,7 +347,7 @@ * When formatting with object Y, * if the object is a NumberFormat, then ((NumberFormat) Y).format(X) * is called. Otherwise Y.toString() is called. - * @exception NullPointerException if {@code limits} or + * @throws NullPointerException if {@code limits} or * {@code formats} is {@code null} */ public void setChoices(double[] limits, String formats[]) { @@ -396,7 +396,7 @@ * @param number number to be formatted and substituted. * @param toAppendTo where text is appended. * @param status ignore no useful status is returned. - * @exception NullPointerException if {@code toAppendTo} + * @throws NullPointerException if {@code toAppendTo} * is {@code null} */ public StringBuffer format(double number, StringBuffer toAppendTo, @@ -426,7 +426,7 @@ * status.index is unchanged and status.errorIndex is set to the * first index of the character that caused the parse to fail. * @return A Number representing the value of the number parsed. - * @exception NullPointerException if {@code status} is {@code null} + * @throws NullPointerException if {@code status} is {@code null} * or if {@code text} is {@code null} and the list of * choice strings is not empty. */