Skip to content

Commit

Permalink
cleanup javadoc for a standalone class
Browse files Browse the repository at this point in the history
  • Loading branch information
hexian000 committed Jun 4, 2018
1 parent 197ca87 commit 8c4652e
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,6 @@ public void mark(int readAheadLimit) {
* Tell whether this stream supports the mark() operation.
*
* @return true, mark is supported.
* @since ostermillerutils 1.00.00
*/
@Override
public boolean markSupported() {
Expand All @@ -384,7 +383,6 @@ public boolean markSupported() {
* @return The byte read, as an integer in the range 0 to 255 (0x00-0xff),
* or -1 if the end of the stream has been reached
* @throws IOException if the stream is closed.
* @since ostermillerutils 1.00.00
*/
@Override
public int read() throws IOException {
Expand Down Expand Up @@ -486,7 +484,6 @@ public int read(@NonNull byte[] b, int off, int len) throws IOException {
* than the readAheadLimit have been read, this method has no effect.
*
* @throws IOException if the stream is closed.
* @since ostermillerutils 1.00.00
*/
@Override
public void reset() throws IOException {
Expand All @@ -507,7 +504,6 @@ public void reset() throws IOException {
* @return The number of bytes actually skipped
* @throws IllegalArgumentException if n is negative.
* @throws IOException if the stream is closed.
* @since ostermillerutils 1.00.00
*/
@Override
public long skip(long n) throws IOException, IllegalArgumentException {
Expand Down Expand Up @@ -550,8 +546,6 @@ public long skip(long n) throws IOException, IllegalArgumentException {
* If the buffer is full, the writes will either block
* until there is some space available or throw an IOException
* based on the CircularByteBuffer's preference.
*
* @since ostermillerutils 1.00.00
*/
protected class CircularByteBufferOutputStream extends OutputStream {

Expand All @@ -564,7 +558,6 @@ protected class CircularByteBufferOutputStream extends OutputStream {
* however, has no effect.
*
* @throws IOException never.
* @since ostermillerutils 1.00.00
*/
@Override
public void close() throws IOException {
Expand All @@ -580,7 +573,6 @@ public void close() throws IOException {
* Flush the stream.
*
* @throws IOException if the stream is closed.
* @since ostermillerutils 1.00.00
*/
@Override
public void flush() throws IOException {
Expand All @@ -602,7 +594,6 @@ public void flush() throws IOException {
* all the data has been written rather than throw an IOException.
*
* @param b Array of bytes to be written
* @since ostermillerutils 1.00.00
*/
@Override
public void write(@NonNull byte[] b) throws IOException {
Expand Down

0 comments on commit 8c4652e

Please sign in to comment.