--- old/src/java.desktop/share/classes/sun/awt/util/IdentityArrayList.java 2015-05-08 22:11:51.000000000 +0300 +++ new/src/java.desktop/share/classes/sun/awt/util/IdentityArrayList.java 2015-05-08 22:11:51.000000000 +0300 @@ -68,7 +68,7 @@ * synchronizing on some object that naturally encapsulates the list. * * If no such object exists, the list should be "wrapped" using the - * {@link Collections#synchronizedList Collections.synchronizedList} + * {@link java.util.Collections#synchronizedList Collections.synchronizedList} * method. This is best done at creation time, to prevent accidental * unsynchronized access to the list:
  *   List list = Collections.synchronizedList(new IdentityArrayList(...));