AbstractInterruptibleChannel.java (close): Set closed before calling implCloseChannel, as in the spec.
* java/nio/channels/spi/AbstractInterruptibleChannel.java (close): Set closed before calling implCloseChannel, as in the spec. From-SVN: r77809
This commit is contained in:
@@ -74,8 +74,8 @@ public abstract class AbstractInterruptibleChannel
|
||||
{
|
||||
if (!closed)
|
||||
{
|
||||
implCloseChannel();
|
||||
closed = true;
|
||||
implCloseChannel();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user