Assorted fixes to router Junit tests for changes in the source

This commit is contained in:
str4d
2012-11-05 21:31:40 +00:00
parent f57d91ac16
commit 4d8973b0a5
6 changed files with 29 additions and 23 deletions

View File

@ -50,7 +50,7 @@ public class TunnelCreateStatusMessage extends I2NPMessageImpl {
public long getNonce() { return _nonce; }
public void setNonce(long nonce) { _nonce = nonce; }
public void readMessage(byte data[], int offset, int dataSize, int type) throws I2NPMessageException, IOException {
public void readMessage(byte data[], int offset, int dataSize, int type) throws I2NPMessageException {
if (type != MESSAGE_TYPE) throw new I2NPMessageException("Message type is incorrect for this message");
int curIndex = offset;