[jboss-cvs] JBossAS SVN: r59907 - branches/Branch_4_2/connector/src/main/org/jboss/resource/security.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jan 22 03:16:47 EST 2007


Author: scott.stark at jboss.org
Date: 2007-01-22 03:16:47 -0500 (Mon, 22 Jan 2007)
New Revision: 59907

Modified:
   branches/Branch_4_2/connector/src/main/org/jboss/resource/security/PBEIdentityLoginModule.java
Log:
Make this compatible with jdk14

Modified: branches/Branch_4_2/connector/src/main/org/jboss/resource/security/PBEIdentityLoginModule.java
===================================================================
--- branches/Branch_4_2/connector/src/main/org/jboss/resource/security/PBEIdentityLoginModule.java	2007-01-22 08:09:17 UTC (rev 59906)
+++ branches/Branch_4_2/connector/src/main/org/jboss/resource/security/PBEIdentityLoginModule.java	2007-01-22 08:16:47 UTC (rev 59907)
@@ -255,7 +255,7 @@
       if( args.length >= 3 )
          salt = args[2].getBytes();
       if( args.length >= 4 )
-         iter = Integer.decode(args[3]);
+         iter = Integer.decode(args[3]).intValue();
       if( args.length >= 5 )
          algo = args[4];
 




More information about the jboss-cvs-commits mailing list