summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java
index 81a99625ab..d7ca3d1e39 100644
--- a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java
+++ b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java
@@ -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.
*