]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixed regression since UIDL rewrite
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 24 Aug 2009 07:41:06 +0000 (07:41 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Mon, 24 Aug 2009 07:41:06 +0000 (07:41 +0000)
svn changeset:8529/svn branch:6.1

src/com/vaadin/terminal/gwt/client/UIDL.java

index 54aef10f0c40e33c836d1a52da8d8a5c2438ea24..e601febe7bf70fd6deb92b7084354d16f2a9e854 100644 (file)
@@ -139,7 +139,7 @@ public final class UIDL extends JavaScriptObject {
             public Object next() {
 
                 if (hasNext()) {
-                    int typeOfChild = typeOfChild(index++);
+                    int typeOfChild = typeOfChild(++index);
                     switch (typeOfChild) {
                     case CHILD_TYPE_UIDL:
                         UIDL childUIDL = getChildUIDL(index);