2002-11-20 Michael Koch <konqueror@gmx.de>

* java/io/FileInputStream.java
	(getChannel): New method.
	* java/io/FileOutputStream.java
	(getChannel): New method.
	* java/net/ServerSocket.java
	(bind): Removed duplicate code and called another bind method instead.
	* java/nio/channels/SelectionKey.java
	(isValid): Removed wrong exception documentation.
	* java/nio/channels/ServerSocketChannel.java
	(accept): Added exception documentation.
	(open): Fixed typo, added exception documentation.
	* java/nio/channels/spi/AbstractSelectableChannel.java
	(implCloseChannel): Added exception documentation.
	(add): Reformated.
	(register): Added exception documentation.

From-SVN: r59307
This commit is contained in:
Michael Koch 2002-11-20 16:19:08 +00:00 committed by Michael Koch
parent e6226a2f87
commit 3ebb998e6f
7 changed files with 65 additions and 25 deletions

View file

@ -147,8 +147,6 @@ public abstract class SelectionKey
/**
* Tells whether or not this key is valid.
*
* @exception CancelledKeyException If this key has been cancelled
*/
public abstract boolean isValid ();