summaryrefslogtreecommitdiff
path: root/libjava/java/nio/channels/Channels.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2005-02-19 09:10:39 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2005-02-19 09:10:39 +0000
commitb376ca1ad61da0f6135a43ac877ea23f712844db (patch)
tree8ba67b5181aa582245424ab74baaad9a90b172a3 /libjava/java/nio/channels/Channels.java
parent4aec6c476ff4060c80d1349658b27d900f67b33c (diff)
SelectorImpl.java: Reworked import statements.
2005-02-19 Michael Koch <konqueror@gmx.de> * gnu/java/nio/SelectorImpl.java: Reworked import statements. (register): Removed unused code. * java/nio/channels/Channels.java: Reformatted. * java/nio/charset/Charset.java: Likewise. * java/rmi/server/RemoteObject.java (serialVersionUID): Made private. * java/rmi/server/UID.java (serialVersionUID): Likewise. From-SVN: r95273
Diffstat (limited to 'libjava/java/nio/channels/Channels.java')
-rw-r--r--libjava/java/nio/channels/Channels.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/libjava/java/nio/channels/Channels.java b/libjava/java/nio/channels/Channels.java
index 3e5316efbe8..4c86cc9079a 100644
--- a/libjava/java/nio/channels/Channels.java
+++ b/libjava/java/nio/channels/Channels.java
@@ -1,5 +1,5 @@
/* Channels.java --
- Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -35,6 +35,7 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+
package java.nio.channels;
import gnu.java.nio.ChannelInputStream;
@@ -62,7 +63,10 @@ public final class Channels
/**
* This class isn't intended to be instantiated.
*/
- private Channels() {}
+ private Channels()
+ {
+ // Do nothing here.
+ }
/**
* Constructs a stream that reads bytes from the given channel.