Skip to content

Commit 269589b

Browse files
committed
Use import not FQCN
1 parent baddd9e commit 269589b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ public boolean evict(final EvictionConfig config, final PooledObject<T> underTes
354354
}
355355

356356
static class TestThread<T> implements Runnable {
357-
private final java.util.Random random = new java.util.Random();
357+
private final Random random = new Random();
358358

359359
/** GKOP to hit */
360360
private final KeyedObjectPool<String, T> pool;

src/test/java/org/apache/commons/pool2/impl/TestGenericObjectPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ public boolean evict(final EvictionConfig config, final PooledObject<T> underTes
455455
static class TestThread<T> implements Runnable {
456456

457457
/** Source of random delay times */
458-
private final java.util.Random random;
458+
private final Random random;
459459

460460
/** Pool to borrow from */
461461
private final ObjectPool<T> pool;

0 commit comments

Comments
 (0)