jdk/src/share/classes/javax/crypto/JceSecurityManager.java
changeset 20754 3d7b2fafc34b
parent 13558 3fb57310d83b
child 23010 6dadb192ad81
--- a/jdk/src/share/classes/javax/crypto/JceSecurityManager.java	Tue Oct 08 11:35:29 2013 -0700
+++ b/jdk/src/share/classes/javax/crypto/JceSecurityManager.java	Tue Oct 08 14:41:46 2013 -0700
@@ -230,7 +230,7 @@
     // See  bug 4341369 & 4334690 for more info.
     boolean isCallerTrusted() {
         // Get the caller and its codebase.
-        Class[] context = getClassContext();
+        Class<?>[] context = getClassContext();
         URL callerCodeBase = null;
         int i;
         for (i=0; i<context.length; i++) {