Skip to content

Commit dd7019c

Browse files
author
Simon MacMullen
committed
Since this now implements Runnable, keep compatibility with Java 1.5.
1 parent 9b95d4a commit dd7019c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/rabbitmq/client/impl/AMQConnection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ private class MainLoop implements Runnable {
529529
* Continues running until the "running" flag is set false by
530530
* shutdown().
531531
*/
532-
@Override public void run() {
532+
public void run() {
533533
try {
534534
while (_running) {
535535
Frame frame = _frameHandler.readFrame();
@@ -679,7 +679,7 @@ public SocketCloseWait(ShutdownSignalException sse) {
679679
cause = sse;
680680
}
681681

682-
@Override public void run() {
682+
public void run() {
683683
try {
684684
_appContinuation.uninterruptibleGet();
685685
} finally {

0 commit comments

Comments
 (0)