This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit e55e2b7475814716fb38c89c6bff61f709c9b363 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jan 5 10:50:52 2025 -0500 Javadoc Remove extra blank lines --- src/main/java/org/apache/commons/lang3/ThreadUtils.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/ThreadUtils.java b/src/main/java/org/apache/commons/lang3/ThreadUtils.java index 7e77bfebe..cfa5428a8 100644 --- a/src/main/java/org/apache/commons/lang3/ThreadUtils.java +++ b/src/main/java/org/apache/commons/lang3/ThreadUtils.java @@ -179,7 +179,6 @@ public class ThreadUtils { * @throws IllegalArgumentException if the specified id is zero or negative * @throws SecurityException * if the current thread cannot access the system thread group - * * @throws SecurityException if the current thread cannot modify * thread groups from this thread's thread group up to the system thread group */ @@ -270,7 +269,6 @@ public class ThreadUtils { public static Collection<ThreadGroup> findThreadGroups(final ThreadGroup threadGroup, final boolean recurse, final Predicate<ThreadGroup> predicate) { Objects.requireNonNull(threadGroup, "threadGroup"); Objects.requireNonNull(predicate, "predicate"); - int count = threadGroup.activeGroupCount(); ThreadGroup[] threadGroups; do {