Community
Participate
Working Groups
Build ID: I20080617-2000 Steps To Reproduce: Create javadoc that looks like this: /** * Class javadoc. Blah blah blah * <pre>{@code * {}}</pre> */ This generates a warning: "Javadoc: Missing closing brace for inline tag" No warning should be generated. More information: The example I give above not a practical piece of javadoc, but is the [almost] smallest case you need. A more practical case can be found here, in java.util.Random#nextBytes: /** * Generates random bytes and places them into a user-supplied * byte array. The number of random bytes produced is equal to * the length of the byte array. * * <p>The method {@code nextBytes} is implemented by class {@code Random} * as if by: * <pre> {@code * public void nextBytes(byte[] bytes) { * for (int i = 0; i < bytes.length; ) * for (int rnd = nextInt(), n = Math.min(bytes.length - i, 4); * n-- > 0; rnd >>= 8) * bytes[i++] = (byte)rnd; * }}</pre> * * @param bytes the byte array to fill with random bytes * @throws NullPointerException if the byte array is null * @since 1.1 */
*** This bug has been marked as a duplicate of bug 206319 ***
*** This bug has been marked as a duplicate of bug 206345 ***