Skip to content

Commit 46969d4

Browse files
committed
Use the scale in the var name.
1 parent 7ea3a6a commit 46969d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/org/apache/commons/codec/language/bm/CacheSubSequencePerformanceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ public void test() {
3535
}
3636

3737
private void test(final CharSequence input, final int times) {
38-
final long beginTime = System.currentTimeMillis();
38+
final long beginTimeMillis = System.currentTimeMillis();
3939
for (int i = 0; i < times; i++) {
4040
test(input);
4141
}
42-
System.out.println(System.currentTimeMillis() - beginTime + " millis");
42+
System.out.println(System.currentTimeMillis() - beginTimeMillis + " millis");
4343
}
4444

4545
private void test(final CharSequence input) {

0 commit comments

Comments
 (0)