jetty9 - SelectChannelEndPoint.toString() fix

This commit is contained in:
Thomas Becker 2012-08-03 19:06:21 +02:00
parent 433839bd47
commit 90112965b6
1 changed files with 1 additions and 7 deletions

View File

@ -13,19 +13,13 @@
package org.eclipse.jetty.io;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.CancelledKeyException;
import java.nio.channels.SelectionKey;
import java.nio.channels.SocketChannel;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import org.eclipse.jetty.io.SelectorManager.ManagedSelector;
import org.eclipse.jetty.util.Callback;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
@ -200,6 +194,6 @@ public class SelectChannelEndPoint extends ChannelEndPoint implements SelectorMa
{
keyString += "!";
}
return String.format("%s{io=%d,k=%s}",_interestOps, keyString);
return String.format("%s{io=%d,k=%s}",super.toString(), _interestOps, keyString);
}
}