diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-08-30 14:08:32 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-08-30 14:08:32 +0000 |
commit | 7f5c49d6f58060fe09c059f54ac5d626f5437aad (patch) | |
tree | ad358981525d9fa539dae50ec21ea0de866db3ee /src/com/vaadin/ui/ExpandLayout.java | |
parent | 6e11045b936c49c2d92ee4c2bdc73506e403e3c2 (diff) | |
download | vaadin-framework-7f5c49d6f58060fe09c059f54ac5d626f5437aad.tar.gz vaadin-framework-7f5c49d6f58060fe09c059f54ac5d626f5437aad.zip |
Eclipse code cleanup
svn changeset:14660/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/ui/ExpandLayout.java')
-rw-r--r-- | src/com/vaadin/ui/ExpandLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/ExpandLayout.java b/src/com/vaadin/ui/ExpandLayout.java index 7f988a47c2..a0d03fa3e5 100644 --- a/src/com/vaadin/ui/ExpandLayout.java +++ b/src/com/vaadin/ui/ExpandLayout.java @@ -84,7 +84,7 @@ public class ExpandLayout extends OrderedLayout { super.removeComponent(c); if (c == expanded) { if (getComponentIterator().hasNext()) { - expand((Component) getComponentIterator().next()); + expand(getComponentIterator().next()); } else { expand(null); } |