From 0e591d29925a957b3b5e18a71e922f6a859e87b7 Mon Sep 17 00:00:00 2001 From: Henrik Paul Date: Thu, 19 Mar 2015 13:21:21 +0200 Subject: Removes unnecessary todo logging (#16644) Change-Id: I5992e6f48c472f252bfbcc8d7b4991ded15fd197 --- client/src/com/vaadin/client/widgets/Escalator.java | 17 ----------------- 1 file changed, 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 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); -- cgit v1.2.3