-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 5.0
-
Component/s: core-libs
-
b40
-
generic
-
solaris_8
from
http://forum.java.sun.com/thread.jsp?forum=316&thread=489159
Near the bottom of the class javadoc for EnumMap, there's a line that's supposed to read
Map<EnumKey, V> m = Collections.synchronizedMap(new EnumMap(...));
But, because the angle brackets aren't escaped, it comes out as
Map m = Collections.synchronizedMap(new EnumMap(...));
in the HTML docs. EnumSet has the same problem.
http://forum.java.sun.com/thread.jsp?forum=316&thread=489159
Near the bottom of the class javadoc for EnumMap, there's a line that's supposed to read
Map<EnumKey, V> m = Collections.synchronizedMap(new EnumMap(...));
But, because the angle brackets aren't escaped, it comes out as
Map m = Collections.synchronizedMap(new EnumMap(...));
in the HTML docs. EnumSet has the same problem.