-
Bug
-
Resolution: Fixed
-
P3
-
None
-
None
-
b36
If you run javadoc on the file below, the regular javadoc in Fields.html has "Class<E>" as expected, but serialized-form.html#bug.Fields has unexpected "java.lang.Class<T extends java.lang.Object> someClass"
It seems like it gets the "T" (instead of the correct "E") from Class.java's type parameter.
---
package bug;
public class Fields<E> implements java.io.Serializable {
/** Some doc. */
public Class<E> someClass;
}
It seems like it gets the "T" (instead of the correct "E") from Class.java's type parameter.
---
package bug;
public class Fields<E> implements java.io.Serializable {
/** Some doc. */
public Class<E> someClass;
}