diff -r 33de7752835c -r 94bb65cb37d3 src/java.base/share/classes/java/util/Hashtable.java --- a/src/java.base/share/classes/java/util/Hashtable.java Fri Sep 20 11:33:30 2019 +0800 +++ b/src/java.base/share/classes/java/util/Hashtable.java Fri Sep 20 11:07:52 2019 +0100 @@ -180,7 +180,7 @@ * * @param initialCapacity the initial capacity of the hashtable. * @param loadFactor the load factor of the hashtable. - * @exception IllegalArgumentException if the initial capacity is less + * @throws IllegalArgumentException if the initial capacity is less * than zero, or if the load factor is nonpositive. */ public Hashtable(int initialCapacity, float loadFactor) { @@ -202,7 +202,7 @@ * and default load factor (0.75). * * @param initialCapacity the initial capacity of the hashtable. - * @exception IllegalArgumentException if the initial capacity is less + * @throws IllegalArgumentException if the initial capacity is less * than zero. */ public Hashtable(int initialCapacity) { @@ -304,7 +304,7 @@ * {@code value} argument in this hashtable as * determined by the {@code equals} method; * {@code false} otherwise. - * @exception NullPointerException if the value is {@code null} + * @throws NullPointerException if the value is {@code null} */ public synchronized boolean contains(Object value) { if (value == null) { @@ -465,7 +465,7 @@ * @param value the value * @return the previous value of the specified key in this hashtable, * or {@code null} if it did not have one - * @exception NullPointerException if the key or value is + * @throws NullPointerException if the key or value is * {@code null} * @see Object#equals(Object) * @see #get(Object)