Revision: 585
Author: dbrosius
Date: 2006-08-05 14:31:40 -0700 (Sat, 05 Aug 2006)
ViewCVS: http://svn.sourceforge.net/fb-contrib/?rev=585&view=rev
Log Message:
-----------
add false positive for bug report [ 1524122 ] LII thrown even if get(i) not called
Modified Paths:
--------------
trunk/fb-contrib/samples/LII_Sample.java
Modified: trunk/fb-contrib/samples/LII_Sample.java
===================================================================
--- trunk/fb-contrib/samples/LII_Sample.java 2006-08-05 03:29:36 UTC (rev 584)
+++ trunk/fb-contrib/samples/LII_Sample.java 2006-08-05 21:31:40 UTC (rev 585)
@@ -57,4 +57,14 @@
return sb.toString();
}
+
+ public void test7FP(List<Integer> editedIndexes, List<Integer> pageTokens, List<Integer> tokens)
+ {
+ Integer index = pageTokens.size();
+ for ( int i = 0; i < tokens.size(); i++ )
+ {
+ editedIndexes.add( index );
+ index++;
+ }
+ }
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|