diff options
author | Manolo Carrasco <manolo@apache.org> | 2012-02-10 13:18:32 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2012-02-10 13:18:32 +0000 |
commit | 0de9f722cbc5fcebf447af6b6fb1d69ca8492ecb (patch) | |
tree | 07d1f074f199bed83bb9b4d1a58ba51ebb3fb3f6 | |
parent | 7954537f5db66786a238b6199bb39bef51365687 (diff) | |
download | gwtquery-0de9f722cbc5fcebf447af6b6fb1d69ca8492ecb.tar.gz gwtquery-0de9f722cbc5fcebf447af6b6fb1d69ca8492ecb.zip |
remove println
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java index c3502e34..6842e311 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java @@ -157,7 +157,6 @@ public class Properties extends JavaScriptObject { }
ret += "],";
} else {
- System.out.println("N");
Properties p = getJavaScriptObject(k);
if (p != null) {
ret += ky + ":" + p.toJsonString() + ",";
|