8027062: Fix lint and doclint issues in java.lang.{ClassLoader, ClassValue, SecurityManager}
Reviewed-by: chegar, forax, alanb, mduigou
--- a/jdk/src/share/classes/java/lang/ClassLoader.java Tue Oct 22 11:57:38 2013 -0700
+++ b/jdk/src/share/classes/java/lang/ClassLoader.java Tue Oct 22 12:04:30 2013 -0700
@@ -362,7 +362,7 @@
* default implementation of this method searches for classes in the
* following order:
*
- * <p><ol>
+ * <ol>
*
* <li><p> Invoke {@link #findLoadedClass(String)} to check if the class
* has already been loaded. </p></li>
@@ -488,7 +488,7 @@
final SecurityManager sm = System.getSecurityManager();
if (sm != null) {
if (ReflectUtil.isNonPublicProxyClass(cls)) {
- for (Class intf: cls.getInterfaces()) {
+ for (Class<?> intf: cls.getInterfaces()) {
checkPackageAccess(intf, pd);
}
return;
--- a/jdk/src/share/classes/java/lang/ClassValue.java Tue Oct 22 11:57:38 2013 -0700
+++ b/jdk/src/share/classes/java/lang/ClassValue.java Tue Oct 22 12:04:30 2013 -0700
@@ -692,7 +692,7 @@
/** Remove all stale entries, everywhere. */
private void removeStaleEntries() {
- Entry[] cache = getCache();
+ Entry<?>[] cache = getCache();
removeStaleEntries(cache, 0, cache.length + PROBE_LIMIT - 1);
}
--- a/jdk/src/share/classes/java/lang/SecurityManager.java Tue Oct 22 11:57:38 2013 -0700
+++ b/jdk/src/share/classes/java/lang/SecurityManager.java Tue Oct 22 12:04:30 2013 -0700
@@ -56,7 +56,7 @@
* are called by various methods in the Java libraries before those
* methods perform certain potentially sensitive operations. The
* invocation of such a <code>check</code> method typically looks like this:
- * <p><blockquote><pre>
+ * <blockquote><pre>
* SecurityManager security = System.getSecurityManager();
* if (security != null) {
* security.check<i>XXX</i>(argument, . . . );
@@ -323,7 +323,7 @@
* by {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
* <p>
* This method will return
- * <code>null</code> in the following three cases:<p>
+ * <code>null</code> in the following three cases:
* <ol>
* <li>All methods on the execution stack are from classes
* defined using the system class loader or one of its ancestors.
@@ -370,7 +370,7 @@
* by {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
* <p>
* This method will return
- * <code>null</code> in the following three cases:<p>
+ * <code>null</code> in the following three cases:
* <ol>
* <li>All methods on the execution stack are from classes
* defined using the system class loader or one of its ancestors.
@@ -429,7 +429,7 @@
* by {@link ClassLoader#getSystemClassLoader}) or one of its ancestors.
* <p>
* This method will return
- * -1 in the following three cases:<p>
+ * -1 in the following three cases:
* <ol>
* <li>All methods on the execution stack are from classes
* defined using the system class loader or one of its ancestors.
@@ -1281,7 +1281,6 @@
* This method calls <code>checkPermission</code> with the
* <code>PropertyPermission(key, "read")</code> permission.
* <p>
- * <p>
* If you override this method, then you should make a call to
* <code>super.checkPropertyAccess</code>
* at the point the overridden method would normally throw an
@@ -1714,7 +1713,7 @@
throw new NullPointerException("class can't be null");
}
if (which != Member.PUBLIC) {
- Class stack[] = getClassContext();
+ Class<?> stack[] = getClassContext();
/*
* stack depth of 4 should be the caller of one of the
* methods in java.lang.Class that invoke checkMember