Channel.java, [...]: Removed redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * java/nio/channels/Channel.java, java/nio/channels/GatheringByteChannel.java, java/nio/channels/ReadableByteChannel.java, java/nio/channels/ScatteringByteChannel.java, java/nio/channels/WritableByteChannel.java: Removed redundant modifiers. From-SVN: r72355
This commit is contained in:
committed by
Michael Koch
parent
d5a87c2b1d
commit
eb0043a057
@@ -59,7 +59,7 @@ public interface ScatteringByteChannel
|
||||
* @exception NonReadableChannelException If this channel was not opened for
|
||||
* reading
|
||||
*/
|
||||
public long read(ByteBuffer[] srcs, int offset, int length)
|
||||
long read (ByteBuffer[] srcs, int offset, int length)
|
||||
throws IOException;
|
||||
|
||||
/**
|
||||
@@ -75,5 +75,5 @@ public interface ScatteringByteChannel
|
||||
* @exception NonReadableChannelException If this channel was not opened for
|
||||
* reading
|
||||
*/
|
||||
public long read(ByteBuffer[] srcs) throws IOException;
|
||||
long read (ByteBuffer[] srcs) throws IOException;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user