jdk/src/java.base/share/classes/javax/crypto/KeyGenerator.java
changeset 32649 2ee9017c7597
parent 32275 17eeb583a331
child 33241 27eb2d6abda9
--- a/jdk/src/java.base/share/classes/javax/crypto/KeyGenerator.java	Wed Sep 16 08:24:40 2015 -0400
+++ b/jdk/src/java.base/share/classes/javax/crypto/KeyGenerator.java	Tue Sep 15 21:56:04 2015 -0700
@@ -116,10 +116,10 @@
 
     // see java.security.KeyPairGenerator for failover notes
 
-    private final static int I_NONE   = 1;
-    private final static int I_RANDOM = 2;
-    private final static int I_PARAMS = 3;
-    private final static int I_SIZE   = 4;
+    private static final int I_NONE   = 1;
+    private static final int I_RANDOM = 2;
+    private static final int I_PARAMS = 3;
+    private static final int I_SIZE   = 4;
 
     // The provider
     private Provider provider;