Hi all,

while writing an example in the JavaDocs of a method I noticed
I bug concerning the quick display (Ctrl-Q) of JavaDocs.

In the following JavaDoc the closing brace is not shown.

    /**
     * Expand internal byte array to contain at least <code>minSize</code> bytes.
     * @param minSize  The number of bytes that <code>ivBytes</code> must be able to 
contain.
     * </p>
     * <li>This function will at least double the internal byte array, so test the 
necessity of
     *     increasing the byte array <b>before</b> calling this function, e.g:
     *     <pre>
     *     int newSize = ivBytes.length + ... ;<br>
     *     if (newSize > ivBytes.length) {<br>
     *         expand(newSize);<br>
     *     }<br>
     *     ...
     *     </pre>
     */
    private void expand(int minSize) {
        // ...code...
    }

When I replace the closing brace with a HTML entity the brace is shown.
    ...
     *     &#125;<br>
    ...

This happens in build 616 and 618.

Sincerely,
Dirk Zoettl

_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to