OSDN Git Service

2004-07-14 Jerry Quinn <jlquinn@optonline.net>
authorjlquinn <jlquinn@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Jul 2004 22:59:24 +0000 (22:59 +0000)
committerjlquinn <jlquinn@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 14 Jul 2004 22:59:24 +0000 (22:59 +0000)
* java/beans/EventHandler.java: Remove debugging statements.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84715 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/java/beans/EventHandler.java

index 172c372..516a34d 100644 (file)
@@ -1,5 +1,9 @@
 2004-07-14  Jerry Quinn  <jlquinn@optonline.net>
 
+       * java/beans/EventHandler.java: Remove debugging statements.
+
+2004-07-14  Jerry Quinn  <jlquinn@optonline.net>
+
        * java/beans/EventHandler.java: New file.
        * Makefile.am (awt_java_source_files): Add EventHandler.java.
        * Makefile.in, gcj/Makefile.in, include/Makefile.in,
index 6a7d185..e1cf6b9 100644 (file)
@@ -242,9 +242,6 @@ public class EventHandler implements InvocationHandler
     Object val = v[0];
     Class propertyType = (Class) v[1];
 
-    System.out.println("ptype="+propertyType.getName());
-    System.out.println(" val="+((val==null)?"null":val.toString()));
-    
     // Find the actual method of target to invoke.  We can't do this in the
     // constructor since we don't know the type of the property we extracted
     // from the event then.