Index: java/awt/dnd/DropTarget.java =================================================================== RCS file: /cvs/gcc/gcc/libjava/java/awt/dnd/DropTarget.java,v retrieving revision 1.7.20.2 diff -u -r1.7.20.2 DropTarget.java --- java/awt/dnd/DropTarget.java 27 Jan 2005 19:15:07 -0000 1.7.20.2 +++ java/awt/dnd/DropTarget.java 27 Jan 2005 21:23:32 -0000 @@ -205,16 +205,14 @@ /** * Adds a new DropTargetListener. * - * @exception TooManyListenersException If there is already a - * DropTargetListener. + * @exception TooManyListenersException Sun's JDK does not, despite + * documentation, throw this exception here when you install an additional + * DropTargetListener. So to be compatible, we do the same + * thing. */ public void addDropTargetListener (DropTargetListener dtl) throws TooManyListenersException { - // Sun's JDK does not, despite documentation, throw any sort of - // exception here when you install an additional DropTargetListener. - // So to be compatible, we do the same thing. - dropTargetListener = dtl; }