diff -r 111dede48a15 -r ddbd63234844 jdk/src/share/classes/com/sun/crypto/provider/AESWrapCipher.java --- a/jdk/src/share/classes/com/sun/crypto/provider/AESWrapCipher.java Thu Jul 30 23:40:15 2009 -0700 +++ b/jdk/src/share/classes/com/sun/crypto/provider/AESWrapCipher.java Mon Aug 03 18:06:51 2009 -0700 @@ -1,5 +1,5 @@ /* - * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved. + * Copyright 2004-2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -65,12 +65,8 @@ /** * Creates an instance of AES KeyWrap cipher with default * mode, i.e. "ECB" and padding scheme, i.e. "NoPadding". - * - * @exception SecurityException if this constructor fails to verify - * its own integrity */ public AESWrapCipher() { - SunJCE.ensureIntegrity(getClass()); cipher = new AESCrypt(); }