summaryrefslogtreecommitdiffstats
path: root/libjava/java/nio/channels/Channel.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/nio/channels/Channel.java')
-rw-r--r--libjava/java/nio/channels/Channel.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/nio/channels/Channel.java b/libjava/java/nio/channels/Channel.java
index b5272c36776..86df85edb1b 100644
--- a/libjava/java/nio/channels/Channel.java
+++ b/libjava/java/nio/channels/Channel.java
@@ -44,12 +44,12 @@ public interface Channel
/**
* Tells whether this channel is open or not
*/
- public boolean isOpen();
+ boolean isOpen();
/**
* Closes this channel
*
* @exception IOException If an error occurs
*/
- public void close() throws IOException;
+ void close() throws IOException;
}
OpenPOWER on IntegriCloud