remove unnecessaary initializers from constructors

This commit is contained in:
zzz
2010-05-16 18:08:24 +00:00
parent d770d3c6da
commit 3bc2e469cc
44 changed files with 10 additions and 141 deletions

View File

@@ -51,14 +51,7 @@ public class DeliveryInstructions extends DataStructureImpl {
private final static long FLAG_DELAY = 16;
public DeliveryInstructions() {
setEncrypted(false);
setEncryptionKey(null);
setDeliveryMode(-1);
setDestination(null);
setRouter(null);
setTunnelId(null);
setDelayRequested(false);
setDelaySeconds(0);
}
public boolean getEncrypted() { return _encrypted; }