]> source.dussan.org Git - vaadin-framework.git/commitdiff
Removed JSON debug message from console
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Tue, 2 Oct 2007 15:36:32 +0000 (15:36 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Tue, 2 Oct 2007 15:36:32 +0000 (15:36 +0000)
svn changeset:2422/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ApplicationConnection.java

index f1b506aa1012539d720b7da3b7cd3a69d8fde58a..bd46973551b8878151b13b430cbdf0ffc976eff5 100755 (executable)
@@ -111,8 +111,6 @@ public class ApplicationConnection implements FocusListener {
        private void handleReceivedJSONMessage(Response response) {
                Date start = new Date();
                String jsonText = response.getText().substring(3) + "}";
-               // TODO This should be a console message, right?
-               System.out.println(jsonText);
                JSONValue json;
                try {
                        json = JSONParser.parse(jsonText);