diff options
-rw-r--r-- | client/src/com/vaadin/client/widgets/Escalator.java | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/client/src/com/vaadin/client/widgets/Escalator.java b/client/src/com/vaadin/client/widgets/Escalator.java index 828d9ca29e..0d65dda611 100644 --- a/client/src/com/vaadin/client/widgets/Escalator.java +++ b/client/src/com/vaadin/client/widgets/Escalator.java @@ -3483,10 +3483,6 @@ public class Escalator extends Widget implements RequiresResize, * instead. */ public void verifyEscalatorCount() { - - // TODO - getLogger().warning("[[spacers]] verifying escalator row count"); - /* * This method indeed has a smell very similar to paintRemoveRows * and paintInsertRows. @@ -3520,11 +3516,6 @@ public class Escalator extends Widget implements RequiresResize, if (neededEscalatorRowsDiff > 0) { // needs more - // TODO - getLogger().warning( - "[[spacers]] adding more rows while expanding the " - + "body section"); - /* * This is a workaround for the issue where we might be scrolled * to the bottom, and the widget expands beyond the content @@ -3595,11 +3586,6 @@ public class Escalator extends Widget implements RequiresResize, else if (neededEscalatorRowsDiff < 0) { // needs less - // TODO - getLogger().warning( - "[[spacers]] removing spacers while shrinking the body " - + "section"); - final ListIterator<TableRowElement> iter = visualRowOrder .listIterator(visualRowOrder.size()); for (int i = 0; i < -neededEscalatorRowsDiff; i++) { @@ -3650,9 +3636,6 @@ public class Escalator extends Widget implements RequiresResize, Profiler.enter("Escalator.BodyRowContainer.reapplyDefaultRowHeights"); - // TODO - getLogger().warning("[[spacer]] reapply default body row heights"); - /* step 1: resize and reposition rows */ for (int i = 0; i < visualRowOrder.size(); i++) { TableRowElement tr = visualRowOrder.get(i); |