]> source.dussan.org Git - gwtquery.git/commitdiff
println
authorManolo Carrasco <manolo@apache.org>
Mon, 28 Mar 2011 15:03:12 +0000 (15:03 +0000)
committerManolo Carrasco <manolo@apache.org>
Mon, 28 Mar 2011 15:03:12 +0000 (15:03 +0000)
gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java

index 1e15efbcc0e40c05a5ded6b90b95f41be849d2a1..9bbae7ce03eea18acfd64cd4424478dee35eb418 100644 (file)
@@ -209,7 +209,6 @@ public class EventsListener implements EventListener {
   }
   
   public void onBrowserEvent(Event event) {
-    System.out.println(event.getType() + " " + element.getTagName());
     // Workaround for Issue_20
     if (lastType == event.getTypeInt()
         && lastEvnt - Duration.currentTimeMillis() < 10
@@ -221,7 +220,6 @@ public class EventsListener implements EventListener {
 
     // Execute the original Gwt listener
     if (getOriginalEventListener() != null) {
-      System.out.println("original");
       getOriginalEventListener().onBrowserEvent(event);
     }