2003-12-02 Michael Koch <konqueror@gmx.de>
authorMichael Koch <konqueror@gmx.de>
Tue, 2 Dec 2003 15:11:57 +0000 (15:11 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Tue, 2 Dec 2003 15:11:57 +0000 (15:11 +0000)
* java/nio/channels/spi/AbstractInterruptibleChannel.java
(opened): Removed.
(closed): New field.
(close): Check of channel is closed already.
(isOpen): Return !closed.

From-SVN: r74182

libjava/ChangeLog
libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java

index 690a4f7b046718de16fcb5b7e401c201a826b441..409bf3b874553cd405c5a708bb9ad53868c3b344 100644 (file)
@@ -1,3 +1,11 @@
+2003-12-02  Michael Koch  <konqueror@gmx.de>
+
+       * java/nio/channels/spi/AbstractInterruptibleChannel.java
+       (opened): Removed.
+       (closed): New field.
+       (close): Check of channel is closed already.
+       (isOpen): Return !closed.
+
 2003-12-02  Michael Koch  <konqueror@gmx.de>
 
        * gnu/java/nio/DatagramChannelImpl.java
index dd4177a8a0129ecb4633c1f52b2e61ef6c9b3ff3..0cf798eaf5724c58fab9e7e6284a6e240bd0acb8 100644 (file)
@@ -49,7 +49,7 @@ import java.nio.channels.InterruptibleChannel;
 public abstract class AbstractInterruptibleChannel
   implements Channel, InterruptibleChannel
 {
-  boolean opened = true;
+  private boolean closed;
 
   /**
    * Initializes the channel.
@@ -72,8 +72,11 @@ public abstract class AbstractInterruptibleChannel
    */
   public final void close () throws IOException
   {
-    opened = false;
-    implCloseChannel ();
+    if (!closed)
+      {
+       implCloseChannel();
+       closed = true;
+      }
   }
 
   /**
@@ -101,6 +104,6 @@ public abstract class AbstractInterruptibleChannel
    */
   public final boolean isOpen ()
   {
-    return opened;
+    return !closed;
   }
 }