You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/10/18 18:39:05 UTC

svn commit: r1533544 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java

Author: sebb
Date: Fri Oct 18 16:39:05 2013
New Revision: 1533544

URL: http://svn.apache.org/r1533544
Log:
Don't override variable name

Modified:
    commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java

Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java?rev=1533544&r1=1533543&r2=1533544&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java (original)
+++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java Fri Oct 18 16:39:05 2013
@@ -284,7 +284,7 @@ public class FastDateFormatTest {
             pool.submit(new Runnable() {
                 @Override
                 public void run() {
-                    for(int i= 0; i<NROUNDS; ++i) {
+                    for(int j= 0; j<NROUNDS; ++j) {
                         try {
                             final Date date= new Date();
                             final String formattedDate= formatter.format(date);