]> source.dussan.org Git - vaadin-framework.git/commitdiff
removed oboslete logging, fixes #4469
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 31 Mar 2010 07:05:18 +0000 (07:05 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Wed, 31 Mar 2010 07:05:18 +0000 (07:05 +0000)
svn changeset:12246/svn branch:6.3

src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

index 81a99625ab7cf8627c258b30fd09fbfdc4d20f60..d7ca3d1e39c324d9ed9cafa285ad0537abcce925 100644 (file)
@@ -325,9 +325,7 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler,
                     .getIntAttribute("firstrow"), uidl.getIntAttribute("rows"));
             bodyContainer.add(scrollBody);
             initialContentReceived = true;
-            ApplicationConnection.getConsole().log("foo");
             if (isAttached()) {
-                ApplicationConnection.getConsole().log("bar");
                 sizeInit();
             }
             scrollBody.restoreRowVisibility();
@@ -1938,13 +1936,11 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler,
                 reactLastRow = totalRows - 1;
             }
             if (lastRendered < reactLastRow) {
-                ApplicationConnection.getConsole().log("GET BELOW");
                 // get some cache rows below visible area
                 rowRequestHandler.setReqFirstRow(lastRendered + 1);
                 rowRequestHandler.setReqRows(reactLastRow - lastRendered);
                 rowRequestHandler.deferRowFetch(1);
             } else if (scrollBody.getFirstRendered() > reactFirstRow) {
-                ApplicationConnection.getConsole().log("GET ABOVE");
                 /*
                  * Branch for fetching cache above visible area.
                  *