diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-03-08 13:57:03 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2012-03-08 13:57:03 +0200 |
commit | 8e0b20234ffcbc1dcb78723bf91f20f6159ef2b3 (patch) | |
tree | d282d6dfd73670e663cfd915ded778b73bc7e415 | |
parent | aea71b60ef52f582f3c02468b29b7336369dc02b (diff) | |
download | vaadin-framework-8e0b20234ffcbc1dcb78723bf91f20f6159ef2b3.tar.gz vaadin-framework-8e0b20234ffcbc1dcb78723bf91f20f6159ef2b3.zip |
Remove debug output accidentally committed
-rw-r--r-- | src/com/vaadin/ui/Window.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/com/vaadin/ui/Window.java b/src/com/vaadin/ui/Window.java index 5793bcbd0a..216a64e57e 100644 --- a/src/com/vaadin/ui/Window.java +++ b/src/com/vaadin/ui/Window.java @@ -222,8 +222,6 @@ public class Window extends Panel implements FocusNotifier, BlurNotifier { && (getHeightUnits() != UNITS_PIXELS || (Integer) variables .get("height") != getHeight())) { sizeHasChanged = true; - System.out.println("Got height from server: " - + variables.get("height")); } if (variables.containsKey("width") && (getWidthUnits() != UNITS_PIXELS || (Integer) variables |