Author: nextgens
Date: 2008-04-28 10:16:31 +0000 (Mon, 28 Apr 2008)
New Revision: 19579
Modified:
trunk/freenet/src/freenet/support/io/PaddedEphemerallyEncryptedBucket.java
Log:
Remove more back-compatibility code
Modified:
trunk/freenet/src/freenet/support/io/PaddedEphemerallyEncryptedBucket.java
===================================================================
--- trunk/freenet/src/freenet/support/io/PaddedEphemerallyEncryptedBucket.java
2008-04-28 10:11:14 UTC (rev 19578)
+++ trunk/freenet/src/freenet/support/io/PaddedEphemerallyEncryptedBucket.java
2008-04-28 10:16:31 UTC (rev 19579)
@@ -102,7 +102,7 @@
if(key.length != 32) throw new IllegalArgumentException("Key
wrong length: "+key.length);
tmp = fs.get("MinPaddedSize");
if(tmp == null)
- minPaddedSize = 1024; // FIXME throw! back
compatibility hack
+ throw new CannotCreateFromFieldSetException("No
MinPaddedSize!");
else {
try {
minPaddedSize = Integer.parseInt(tmp);