aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core/src
diff options
context:
space:
mode:
authorJulien Dramaix <julien.dramaix@gmail.com>2011-03-31 21:28:41 +0000
committerJulien Dramaix <julien.dramaix@gmail.com>2011-03-31 21:28:41 +0000
commit902172b9be8652c80f27fa3b2160ab886a4da004 (patch)
tree3724813d9aec7aa1a13e89b0e8a31db2dde7593b /gwtquery-core/src
parentc7fb2cde1e30fc5fd055fa09f5bfc125d682bb34 (diff)
downloadgwtquery-902172b9be8652c80f27fa3b2160ab886a4da004.tar.gz
gwtquery-902172b9be8652c80f27fa3b2160ab886a4da004.zip
remove System.err.println() calls
Diffstat (limited to 'gwtquery-core/src')
-rw-r--r--gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCoreTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCoreTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCoreTest.java
index 55c78842..2dcd4517 100644
--- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCoreTest.java
+++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryCoreTest.java
@@ -1152,10 +1152,9 @@ public class GQueryCoreTest extends GWTTestCase {
assertEquals(3, $(".parent", e).length());
assertEquals(3, $(".child", e).length());
-System.err.println("before" +$(e));
$(".child",e).unwrap();
- System.err.println("after" +$(e));
+
assertEquals(0, $(".parent",e).length());
assertEquals(3, $(".child",e).length());