diff options
author | Henrik Paul <henrik@vaadin.com> | 2015-03-19 13:21:21 +0200 |
---|---|---|
committer | Henrik Paul <henrik@vaadin.com> | 2015-03-19 13:21:21 +0200 |
commit | 0e591d29925a957b3b5e18a71e922f6a859e87b7 (patch) | |
tree | 14d2a2e62a77d47485772e75139de181a55f8057 | |
parent | 266101fc0e96dae779c0e2babfcddf627dc49f50 (diff) | |
download | vaadin-framework-0e591d29925a957b3b5e18a71e922f6a859e87b7.tar.gz vaadin-framework-0e591d29925a957b3b5e18a71e922f6a859e87b7.zip |
Removes unnecessary todo logging (#16644)
Change-Id: I5992e6f48c472f252bfbcc8d7b4991ded15fd197
-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); |