Skip to content

Commit 9217db9

Browse files
Don't use @OverRide on interface implementations
Restores Java 5 compatibility.
1 parent 1fd7bf0 commit 9217db9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ public InetAddress getAddress() {
172172
return _frameHandler.getAddress();
173173
}
174174

175-
@Override
176175
public InetAddress getLocalAddress() {
177176
return _frameHandler.getLocalAddress();
178177
}
@@ -182,7 +181,6 @@ public int getPort() {
182181
return _frameHandler.getPort();
183182
}
184183

185-
@Override
186184
public int getLocalPort() {
187185
return _frameHandler.getLocalPort();
188186
}

src/com/rabbitmq/client/impl/recovery/AutorecoveringChannel.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ public void close(int closeCode, String closeMessage) throws IOException {
7272
}
7373
}
7474

75-
@Override
7675
public boolean flowBlocked() {
7776
return delegate.flowBlocked();
7877
}

0 commit comments

Comments
 (0)