diff -r 33de7752835c -r 94bb65cb37d3 src/java.base/share/classes/java/util/zip/Deflater.java --- a/src/java.base/share/classes/java/util/zip/Deflater.java Fri Sep 20 11:33:30 2019 +0800 +++ b/src/java.base/share/classes/java/util/zip/Deflater.java Fri Sep 20 11:07:52 2019 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -364,7 +364,7 @@ * effect only after that invocation. * * @param strategy the new compression strategy - * @exception IllegalArgumentException if the compression strategy is + * @throws IllegalArgumentException if the compression strategy is * invalid */ public void setStrategy(int strategy) { @@ -393,7 +393,7 @@ * take effect only after that invocation. * * @param level the new compression level (0-9) - * @exception IllegalArgumentException if the compression level is invalid + * @throws IllegalArgumentException if the compression level is invalid */ public void setLevel(int level) { if ((level < 0 || level > 9) && level != DEFAULT_COMPRESSION) {