diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-02-23 08:29:10 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-02-23 08:29:10 +0000 |
commit | 0554fadd3083481427451c9f261332a6e4e020a9 (patch) | |
tree | 950d863374ea5fe0bc5b181dfb90db05fbe64e48 | |
parent | 8b2bf6272d74e11e304267cf9cb5c0830e758c52 (diff) | |
download | gwtquery-0554fadd3083481427451c9f261332a6e4e020a9.tar.gz gwtquery-0554fadd3083481427451c9f261332a6e4e020a9.zip |
reverting println
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/Properties.java | 4 |
1 files changed, 1 insertions, 3 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 fd33077e..178deabb 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 @@ -34,9 +34,7 @@ public class Properties extends JavaScriptObject { }-*/;
protected static String wrapPropertiesString(String s) {
- String ret = "({" + s.replaceFirst("^[({]+", "").replaceFirst("[})]+$", "") + "})";
- System.out.println("\n" + s + "\n" + ret);
- return ret;
+ return "({" + s.replaceFirst("^[({]+", "").replaceFirst("[})]+$", "") + "})";
}
protected Properties() {
|