summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/UI.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-11-06 18:06:20 +0200
committerArtur Signell <artur@vaadin.com>2012-11-06 18:06:20 +0200
commit438854e549b7f44f091f47363dfc050d9a2fa82a (patch)
treeb0e585deefaddab537943a733b08fb66740ae4dc /server/src/com/vaadin/ui/UI.java
parent9f441030134a04f551c147c569ddce92e1cec9f6 (diff)
downloadvaadin-framework-438854e549b7f44f091f47363dfc050d9a2fa82a.tar.gz
vaadin-framework-438854e549b7f44f091f47363dfc050d9a2fa82a.zip
AbstractComponentContainer should implement getComponentIterator and not iterator (#10144)
Change-Id: I092cc71dfa9ded74f6624e6808a9ec1de7cf1cb5
Diffstat (limited to 'server/src/com/vaadin/ui/UI.java')
-rw-r--r--server/src/com/vaadin/ui/UI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/com/vaadin/ui/UI.java b/server/src/com/vaadin/ui/UI.java
index 4d743859da..d2f323e5fe 100644
--- a/server/src/com/vaadin/ui/UI.java
+++ b/server/src/com/vaadin/ui/UI.java
@@ -333,7 +333,7 @@ public abstract class UI extends AbstractComponentContainer implements
* @see com.vaadin.ui.ComponentContainer#getComponentIterator()
*/
@Override
- public Iterator<Component> getComponentIterator() {
+ public Iterator<Component> iterator() {
// TODO could directly create some kind of combined iterator instead of
// creating a new ArrayList
ArrayList<Component> components = new ArrayList<Component>();