diff options
author | Manolo Carrasco <manolo@apache.org> | 2012-02-08 11:52:06 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2012-02-08 11:52:06 +0000 |
commit | 6b56b6422bf2ded23ec857f39ddfd102b69ba962 (patch) | |
tree | 87ed4f89570e79550cae7667709ac2f2324aeccd | |
parent | cada43352ea5fb01060d783d0803a5a99b74dc42 (diff) | |
download | gwtquery-6b56b6422bf2ded23ec857f39ddfd102b69ba962.tar.gz gwtquery-6b56b6422bf2ded23ec857f39ddfd102b69ba962.zip |
Use GWT.log instead of stdout when initializing selectors
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngine.java | 4 | ||||
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngine.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngine.java index 191aab2a..fe793fd9 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngine.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngine.java @@ -91,9 +91,9 @@ public class SelectorEngine implements HasSelector { public SelectorEngine() {
impl = (SelectorEngineImpl) GWT.create(SelectorEngineImpl.class);
- System.out.println("Created SelectorEngineImpl: " + impl.getClass().getName());
+ GWT.log("GQuery - Created SelectorEngineImpl: " + impl.getClass().getName());
styleImpl = GWT.create(DocumentStyleImpl.class);
- System.out.println("Created DocumentStyleImpl: " + styleImpl.getClass().getName());
+ GWT.log("GQuery - Created DocumentStyleImpl: " + styleImpl.getClass().getName());
}
public Node getRoot() {
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java index d7665464..d320fc34 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/SelectorEngineNative.java @@ -37,7 +37,7 @@ public class SelectorEngineNative extends SelectorEngineImpl { public SelectorEngineNative() { if (impl == null) { impl = GWT.create(HasSelector.class); - System.out.println("Created HasSelector: " + impl.getClass().getName()); + GWT.log("GQuery - Created HasSelector: " + impl.getClass().getName()); } } |