Workaround for the bogus FindBugs warning in ReplayingDecoderBuffer

This commit is contained in:
Trustin Lee 2008-11-07 02:41:29 +00:00
parent f73de01a68
commit cee920f3b8

View File

@ -57,6 +57,11 @@ class ReplayingDecoderBuffer implements ChannelBuffer {
public void clear() {
reject();
}
@Override
public boolean equals(Object obj) {
return this == obj;
}
public int compareTo(ChannelBuffer buffer) {
reject();