Skip to content

Commit 53a7c67

Browse files
committed
Update single line comment
1 parent 27301c6 commit 53a7c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ private PooledObject<T> create() throws Exception {
549549
}
550550
}
551551

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

0 commit comments

Comments
 (0)