diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-11-06 16:27:17 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-11-06 16:27:17 +0000 |
commit | d55cac7aa08e1652d140f6980ffc29e99da349ab (patch) | |
tree | 6ab09e745dff47a0e21fcc57691ffa5d344b4205 /server/src/com/vaadin/ui/CustomLayout.java | |
parent | ec2ebb4d65f5d2150d0d01b726837c45105eab5d (diff) | |
parent | 438854e549b7f44f091f47363dfc050d9a2fa82a (diff) | |
download | vaadin-framework-d55cac7aa08e1652d140f6980ffc29e99da349ab.tar.gz vaadin-framework-d55cac7aa08e1652d140f6980ffc29e99da349ab.zip |
Merge "AbstractComponentContainer should implement getComponentIterator and not iterator (#10144)"
Diffstat (limited to 'server/src/com/vaadin/ui/CustomLayout.java')
-rw-r--r-- | server/src/com/vaadin/ui/CustomLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/CustomLayout.java b/server/src/com/vaadin/ui/CustomLayout.java index 19bd5a54b3..b75d241fe5 100644 --- a/server/src/com/vaadin/ui/CustomLayout.java +++ b/server/src/com/vaadin/ui/CustomLayout.java @@ -191,7 +191,7 @@ public class CustomLayout extends AbstractLayout implements LegacyComponent { * @return the Iterator of the components inside the container. */ @Override - public Iterator<Component> getComponentIterator() { + public Iterator<Component> iterator() { return slots.values().iterator(); } |