summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/ExpandLayout.java
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-08-30 14:08:32 +0000
committerArtur Signell <artur.signell@itmill.com>2010-08-30 14:08:32 +0000
commit7f5c49d6f58060fe09c059f54ac5d626f5437aad (patch)
treead358981525d9fa539dae50ec21ea0de866db3ee /src/com/vaadin/ui/ExpandLayout.java
parent6e11045b936c49c2d92ee4c2bdc73506e403e3c2 (diff)
downloadvaadin-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.java2
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);
}