From: Manolo Carrasco Date: Sat, 24 Sep 2011 06:08:05 +0000 (+0000) Subject: remove printouts X-Git-Tag: release-1.3.2~193 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1af95ade94e3be8d769d828355c62f987a01ca6f;p=gwtquery.git remove printouts --- diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTest.java index 7a84c6a8..540e1b41 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTest.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTest.java @@ -66,7 +66,6 @@ public class GQueryAjaxTest extends GWTTestCase { assertEquals(0, c.getA()); c.parse(json, true); assertEquals(1, c.getA()); - System.out.println(c); assertNotNull(c.getB()); assertEquals(2, c.getB().getA()); assertEquals(3, c.getB().getB().getA()); diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTest.java index b212786b..20071608 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTest.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryEventsTest.java @@ -284,7 +284,6 @@ public class GQueryEventsTest extends GWTTestCase { $(".clickMe", e).live("click", new Function(){ public void f() { $(this).css("color", "red"); - System.out.println($(this)); } }); diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsTest.java index 788b54f2..6a1a0081 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsTest.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryJsTest.java @@ -119,7 +119,6 @@ public class GQueryJsTest extends GWTTestCase { assertEquals("rgb(0,0,139)", p.getStr("color")); p = $$("a: 1, b: 0.5, c: null, d: whatever, e: true, f: false"); - System.out.println(p.tostring()); assertEquals(1, p.getInt("a")); assertEquals(0.5f, p.getFloat("b")); assertEquals("whatever", p.getStr("d"));