diff options
Diffstat (limited to 'libjava/classpath/gnu/javax/crypto/cipher/Twofish.java')
-rw-r--r-- | libjava/classpath/gnu/javax/crypto/cipher/Twofish.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/classpath/gnu/javax/crypto/cipher/Twofish.java b/libjava/classpath/gnu/javax/crypto/cipher/Twofish.java index bea7f5d2cf2..f5565d4b46f 100644 --- a/libjava/classpath/gnu/javax/crypto/cipher/Twofish.java +++ b/libjava/classpath/gnu/javax/crypto/cipher/Twofish.java @@ -902,7 +902,7 @@ public final class Twofish extends BaseCipher { result = testKat(KAT_KEY, KAT_CT); } - valid = new Boolean(result); + valid = Boolean.valueOf(result); } return valid.booleanValue(); } |