]> source.dussan.org Git - vaadin-framework.git/commitdiff
removed duplicate fix for #4170 (from dd branch)
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 9 Mar 2010 15:52:39 +0000 (15:52 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 9 Mar 2010 15:52:39 +0000 (15:52 +0000)
svn changeset:11717/svn branch:6.3

src/com/vaadin/data/util/IndexedContainer.java

index 3bac19cd7aec52e9dddc2b5b2198600272508ab0..bd3c14180da9bc06475cfc43986d2a36e02dbf49 100644 (file)
@@ -568,10 +568,6 @@ public class IndexedContainer implements Container.Indexed,
                 return null;
             }
         }
-        if (index < 0) {
-            index = 0;
-        }
-
         return addItemAt(index, newItemId);
     }