[kaffe] CVS kaffe (robilad): Resynced with GNU classpath: DropTarget cleanup

Kaffe CVS cvs-commits at kaffe.org
Sat Jan 29 07:36:48 PST 2005


PatchSet 5937 
Date: 2005/01/29 15:26:06
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU classpath: DropTarget cleanup

2005-01-27  Dalibor Topic  <robilad at kaffe.org>

        Resynced with GNU Classpath.

2005-01-27  Michael Koch  <konqueror at gmx.de>

* java/awt/dnd/DropTarget.java (addDropTargetListener):
Clarified comments.

Members: 
	ChangeLog:1.3476->1.3477 
	libraries/javalib/java/awt/dnd/DropTarget.java:1.7->1.8 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3476 kaffe/ChangeLog:1.3477
--- kaffe/ChangeLog:1.3476	Sat Jan 29 14:35:26 2005
+++ kaffe/ChangeLog	Sat Jan 29 15:26:06 2005
@@ -2,6 +2,15 @@
 
         Resynced with GNU Classpath.
 	
+	2005-01-27  Michael Koch  <konqueror at gmx.de>
+
+	* java/awt/dnd/DropTarget.java (addDropTargetListener):
+	Clarified comments.
+
+2005-01-27  Dalibor Topic  <robilad at kaffe.org>
+
+        Resynced with GNU Classpath.
+	
 	2005-01-27  Graydon Hoare  <graydon at redhat.com>
 
 	* java/awt/dnd/DropTarget.java
Index: kaffe/libraries/javalib/java/awt/dnd/DropTarget.java
diff -u kaffe/libraries/javalib/java/awt/dnd/DropTarget.java:1.7 kaffe/libraries/javalib/java/awt/dnd/DropTarget.java:1.8
--- kaffe/libraries/javalib/java/awt/dnd/DropTarget.java:1.7	Sat Jan 29 14:35:29 2005
+++ kaffe/libraries/javalib/java/awt/dnd/DropTarget.java	Sat Jan 29 15:26:09 2005
@@ -205,16 +205,14 @@
   /**
    * Adds a new <code>DropTargetListener</code>.
    * 
-   * @exception TooManyListenersException If there is already a
-   * <code>DropTargetListener</code>.
+   * @exception TooManyListenersException Sun's JDK does not, despite
+   * documentation, throw this exception here when you install an additional
+   * <code>DropTargetListener</code>.  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;
   }
 




More information about the kaffe mailing list