This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new fd8bd1d7d Javadoc
fd8bd1d7d is described below
commit fd8bd1d7def96e19bb2294cfaa59045b9f743a68
Author: Gary Gregory <[email protected]>
AuthorDate: Wed May 6 08:14:24 2026 -0400
Javadoc
---
src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java
b/src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java
index d13cd9ca3..e9bd002e7 100644
--- a/src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java
@@ -192,6 +192,7 @@ void testJoinDuration() throws InterruptedException {
@Test
void testJoinDurationZero() throws InterruptedException {
+ // This test doesn't wait forever because the thread is not alive, so
the call returns immediately.
ThreadUtils.join(new Thread(), Duration.ZERO);
}