--- old/src/share/classes/java/awt/dnd/DragGestureEvent.java 2013-03-04 20:05:20.865936100 +0400 +++ new/src/share/classes/java/awt/dnd/DragGestureEvent.java 2013-03-04 20:05:20.264859800 +0400 @@ -165,7 +165,7 @@ *

* @return an Iterator for the events comprising the gesture */ - + @SuppressWarnings("unchecked") public Iterator iterator() { return events.iterator(); } /** @@ -184,7 +184,7 @@ *

* @return an array of the events comprising the gesture */ - + @SuppressWarnings("unchecked") public Object[] toArray(Object[] array) { return events.toArray(array); } /** @@ -333,7 +333,6 @@ component = (Component)f.get("component", null); origin = (Point)f.get("origin", null); action = f.get("action", 0); - // Pre-1.4 support. 'events' was previously non-transient try { events = (List)f.get("events", null); @@ -351,7 +350,7 @@ /* * fields */ - + @SuppressWarnings("rawtypes") private transient List events; /**