Skip to content

Commit 7cf0e12

Browse files
committed
Update single line comment
1 parent ef048f0 commit 7cf0e12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/commons/pool3/impl/GenericObjectPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ private PooledObject<T> create() throws E {
561561
}
562562
}
563563

564-
// Do not block more if maxWaitTimeMillis is set.
564+
// Do not block more if localMaxWaitDuration is set.
565565
if (create == null && localMaxWaitDuration.compareTo(Duration.ZERO) > 0 &&
566566
Duration.between(localStartInstant, Instant.now()).compareTo(localMaxWaitDuration) >= 0) {
567567
create = Boolean.FALSE;

0 commit comments

Comments
 (0)