--- old/src/share/classes/javax/crypto/spec/RC5ParameterSpec.java 2013-06-10 10:38:10.173878653 +0100 +++ new/src/share/classes/javax/crypto/spec/RC5ParameterSpec.java 2013-06-10 10:38:09.897878660 +0100 @@ -80,7 +80,7 @@ * bytes of the buffer are copied to protect against subsequent * modification. * @exception IllegalArgumentException if iv is - * null or (iv.length < 2 * (wordSize / 8)) + * null or {@code (iv.length < 2 * (wordSize / 8))} */ public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv) { this(version, rounds, wordSize, iv, 0); @@ -107,7 +107,7 @@ * @param offset the offset in iv where the IV starts. * @exception IllegalArgumentException if iv is * null or - * (iv.length - offset < 2 * (wordSize / 8)) + * {@code (iv.length - offset < 2 * (wordSize / 8))} */ public RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) {