Optimize imports

This commit is contained in:
Trustin Lee 2012-11-12 09:47:20 +09:00
parent 2fe3e495c1
commit 849a265c2e
2 changed files with 8 additions and 10 deletions

View File

@ -15,15 +15,6 @@
*/
package org.jboss.netty.handler.stream;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.lang.OutOfMemoryError;
import java.nio.channels.ClosedChannelException;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelDownstreamHandler;
@ -40,6 +31,14 @@ import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.logging.InternalLogger;
import org.jboss.netty.logging.InternalLoggerFactory;
import java.io.IOException;
import java.nio.channels.ClosedChannelException;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import static org.jboss.netty.channel.Channels.*;
/**
* A {@link ChannelHandler} that adds support for writing a large data stream
* asynchronously neither spending a lot of memory nor getting

View File

@ -22,7 +22,6 @@
package org.jboss.netty.util.internal;
import java.lang.Math;
import java.util.Random;
/**