Don't override variable name

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1533544 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-10-18 16:39:05 +00:00
parent 7b6c2cc0bd
commit 4be45b6dcc
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ public class FastDateFormatTest {
pool.submit(new Runnable() { pool.submit(new Runnable() {
@Override @Override
public void run() { public void run() {
for(int i= 0; i<NROUNDS; ++i) { for(int j= 0; j<NROUNDS; ++j) {
try { try {
final Date date= new Date(); final Date date= new Date();
final String formattedDate= formatter.format(date); final String formattedDate= formatter.format(date);