You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/12/01 12:46:47 UTC

svn commit: r885746 - /incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java

Author: tvolkert
Date: Tue Dec  1 11:46:47 2009
New Revision: 885746

URL: http://svn.apache.org/viewvc?rev=885746&view=rev
Log:
Applied patch submission for PIVOT-351

Modified:
    incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java

Modified: incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java
URL: http://svn.apache.org/viewvc/incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java?rev=885746&r1=885745&r2=885746&view=diff
==============================================================================
--- incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java (original)
+++ incubator/pivot/trunk/core/src/org/apache/pivot/collections/Sequence.java Tue Dec  1 11:46:47 2009
@@ -457,7 +457,7 @@
                         path = pathOf((Sequence<T>)t, item);
 
                         if (path != null) {
-                            path.insert(0, i);
+                            path.insert(i, 0);
                         }
                     }
                 }