OSDN Git Service

2003-06-11 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 10:38:58 +0000 (10:38 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 11 Jun 2003 10:38:58 +0000 (10:38 +0000)
* java/nio/MappedByteBuffer.java,
java/nio/channels/Channels.java,
java/nio/channels/ServerSocketChannel.java,
java/nio/channels/spi/AbstractSelector.java:
Removed unneeded imports.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67756 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/nio/MappedByteBuffer.java
libjava/java/nio/channels/Channels.java
libjava/java/nio/channels/ServerSocketChannel.java
libjava/java/nio/channels/spi/AbstractSelector.java

index 845bfbe..9b4af5b 100644 (file)
@@ -1,5 +1,13 @@
 2003-06-11  Michael Koch  <konqueror@gmx.de>
 
+       * java/nio/MappedByteBuffer.java,
+       java/nio/channels/Channels.java,
+       java/nio/channels/ServerSocketChannel.java,
+       java/nio/channels/spi/AbstractSelector.java:
+       Removed unneeded imports.
+
+2003-06-11  Michael Koch  <konqueror@gmx.de>
+
        * java/net/DatagramSocket.java:
        Partly merged with classpath.
 
index 305327b..87500e7 100644 (file)
@@ -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;
 
 /**
index d911b41..98fc2b6 100644 (file)
@@ -41,7 +41,6 @@ import java.io.InputStream;
 import java.io.OutputStream;
 import java.io.Reader;
 import java.io.Writer;
-import java.nio.channels.WritableByteChannel;
 import java.nio.charset.Charset;
 import java.nio.charset.CharsetDecoder;
 import java.nio.charset.CharsetEncoder;
index e41af21..2787007 100644 (file)
@@ -35,12 +35,11 @@ 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 java.nio.channels.spi.AbstractSelectableChannel;
 import java.nio.channels.spi.SelectorProvider;
-import java.nio.ByteOrder;
-import java.nio.ByteBuffer;
 import java.io.IOException;
 import java.net.ServerSocket;
 
index fc0aeca..160cdc0 100644 (file)
@@ -35,12 +35,12 @@ 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.spi;
 
 import java.io.IOException;
 import java.nio.channels.SelectionKey;
 import java.nio.channels.Selector;
-import java.util.List;
 import java.util.Set;
 
 public abstract class AbstractSelector extends Selector