--- old/src/share/classes/java/util/zip/InflaterInputStream.java 2013-06-10 10:38:07.301878720 +0100 +++ new/src/share/classes/java/util/zip/InflaterInputStream.java 2013-06-10 10:38:07.033878725 +0100 @@ -75,7 +75,7 @@ * @param in the input stream * @param inf the decompressor ("inflater") * @param size the input buffer size - * @exception IllegalArgumentException if size is <= 0 + * @exception IllegalArgumentException if {@code size <= 0} */ public InflaterInputStream(InputStream in, Inflater inf, int size) { super(in); @@ -191,7 +191,7 @@ * @param n the number of bytes to skip * @return the actual number of bytes skipped. * @exception IOException if an I/O error has occurred - * @exception IllegalArgumentException if n < 0 + * @exception IllegalArgumentException if {@code n < 0} */ public long skip(long n) throws IOException { if (n < 0) {