Fully clean up I2PTunnel. No more lint issues, should compile 100% clean.

Dropped unused class BufferLogger from I2PTunnel as it is not used anylonger.
This commit is contained in:
sponge
2010-01-15 03:32:35 +00:00
parent 11249657ac
commit 0a1960461a
12 changed files with 41 additions and 120 deletions

View File

@ -48,7 +48,18 @@ public final class I2PDatagramMaker {
sxPrivKey = session.getPrivateKey();
sxDestBytes = session.getMyDestination().toByteArray();
}
/**
* Construct a new I2PDatagramMaker that is null.
* Use setI2PDatagramMaker to set the parameters.
*/
public I2PDatagramMaker() {
// nop
}
public void setI2PDatagramMaker(I2PSession session) {
sxPrivKey = session.getPrivateKey();
sxDestBytes = session.getMyDestination().toByteArray();
}
/**
* Make a repliable I2P datagram containing the specified payload.
*