diff options
| author | Martin Ritchie <ritchiem@apache.org> | 2009-10-19 11:11:30 +0000 |
|---|---|---|
| committer | Martin Ritchie <ritchiem@apache.org> | 2009-10-19 11:11:30 +0000 |
| commit | 6a2ade08c0a1d3b52a04f6c1b67922100ddb0d3b (patch) | |
| tree | 260c39317ff7ff3158a08ec5609fa49e0ba125cc /java/client | |
| parent | babc69ee525b77d905c0c07619fb792bff0f0d41 (diff) | |
| download | qpid-python-6a2ade08c0a1d3b52a04f6c1b67922100ddb0d3b.tar.gz | |
Remove Java 1.6 @Overrides on interface implmentations
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@826639 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
| -rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java b/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java index d625cdb6f2..35bc521c80 100644 --- a/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java +++ b/java/client/src/main/java/org/apache/qpid/client/protocol/AMQProtocolHandler.java @@ -285,7 +285,6 @@ public class AMQProtocolHandler implements ProtocolEngine failoverThread.start(); } - @Override public void readerIdle() { _logger.debug("Protocol Session [" + this + "] idle: reader"); @@ -295,7 +294,6 @@ public class AMQProtocolHandler implements ProtocolEngine _networkDriver.close(); } - @Override public void writerIdle() { _logger.debug("Protocol Session [" + this + "] idle: reader"); @@ -421,7 +419,6 @@ public class AMQProtocolHandler implements ProtocolEngine private static int _messageReceivedCount; - @Override public void received(ByteBuffer msg) { try @@ -431,7 +428,6 @@ public class AMQProtocolHandler implements ProtocolEngine Job.fireAsynchEvent(_poolReference.getPool(), _readJob, new Runnable() { - @Override public void run() { // Decode buffer @@ -566,7 +562,6 @@ public class AMQProtocolHandler implements ProtocolEngine _writtenBytes += buf.remaining(); Job.fireAsynchEvent(_poolReference.getPool(), _writeJob, new Runnable() { - @Override public void run() { _networkDriver.send(buf); |
