--- old/src/java.base/share/classes/java/io/ByteArrayOutputStream.java 2015-08-03 12:09:28.799479238 +0300 +++ new/src/java.base/share/classes/java/io/ByteArrayOutputStream.java 2015-08-03 12:09:28.479319230 +0300 @@ -31,12 +31,12 @@ * This class implements an output stream in which the data is * written into a byte array. The buffer automatically grows as data * is written to it. - * The data can be retrieved using toByteArray() and - * toString(). + * The data can be retrieved using {@code toByteArray()} and + * {@code toString()}. *

- * Closing a ByteArrayOutputStream has no effect. The methods in + * Closing a {@code ByteArrayOutputStream} has no effect. The methods in * this class can be called after the stream has been closed without - * generating an IOException. + * generating an {@code IOException}. * * @author Arthur van Hoff * @since 1.0 @@ -138,8 +138,8 @@ } /** - * Writes len bytes from the specified byte array - * starting at offset off to this byte array output stream. + * Writes {@code len} bytes from the specified byte array + * starting at offset {@code off} to this byte array output stream. * * @param b the data. * @param off the start offset in the data. @@ -158,7 +158,7 @@ /** * Writes the complete contents of this byte array output stream to * the specified output stream argument, as if by calling the output - * stream's write method using out.write(buf, 0, count). + * stream's write method using {@code out.write(buf, 0, count)}. * * @param out the output stream to which to write the data. * @exception IOException if an I/O error occurs. @@ -168,7 +168,7 @@ } /** - * Resets the count field of this byte array output + * Resets the {@code count} field of this byte array output * stream to zero, so that all currently accumulated output in the * output stream is discarded. The output stream can be used again, * reusing the already allocated buffer space. @@ -194,7 +194,7 @@ /** * Returns the current size of the buffer. * - * @return the value of the count field, which is the number + * @return the value of the {@code count} field, which is the number * of valid bytes in this output stream. * @see java.io.ByteArrayOutputStream#count */ @@ -204,7 +204,7 @@ /** * Converts the buffer's contents into a string decoding bytes using the - * platform's default character set. The length of the new String + * platform's default character set. The length of the new {@code String} * is a function of the character set, and hence may not be equal to the * size of the buffer. * @@ -224,7 +224,7 @@ /** * Converts the buffer's contents into a string by decoding the bytes using * the named {@link java.nio.charset.Charset charset}. The length of the new - * String is a function of the charset, and hence may not be equal + * {@code String} is a function of the charset, and hence may not be equal * to the length of the byte array. * *

This method always replaces malformed-input and unmappable-character @@ -251,14 +251,14 @@ * copied into it. Each character c in the resulting string is * constructed from the corresponding element b in the byte * array such that: - *

-     *     c == (char)(((hibyte & 0xff) << 8) | (b & 0xff))
-     * 
+ *
{@code
+     *     c == (char)(((hibyte & 0xff) << 8) | (b & 0xff))
+     * }
* * @deprecated This method does not properly convert bytes into characters. * As of JDK 1.1, the preferred way to do this is via the - * toString(String enc) method, which takes an encoding-name - * argument, or the toString() method, which uses the + * {@code toString(String enc)} method, which takes an encoding-name + * argument, or the {@code toString()} method, which uses the * platform's default character encoding. * * @param hibyte the high byte of each resulting Unicode character. @@ -273,9 +273,9 @@ } /** - * Closing a ByteArrayOutputStream has no effect. The methods in + * Closing a {@code ByteArrayOutputStream} has no effect. The methods in * this class can be called after the stream has been closed without - * generating an IOException. + * generating an {@code IOException}. */ public void close() throws IOException { }