fix compilation error in amqp module

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1411695 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2012-11-20 15:18:13 +00:00
parent 915333e1d5
commit badc1868bb
1 changed files with 5 additions and 0 deletions

View File

@ -88,4 +88,9 @@ public class DroppingWritableBuffer implements WritableBuffer
pos += payload.remaining();
payload.position(payload.limit());
}
@Override
public int limit() {
return Integer.MAX_VALUE;
}
}