From e55e2b7475814716fb38c89c6bff61f709c9b363 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Sun, 5 Jan 2025 10:50:52 -0500 Subject: [PATCH] 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 7e77bfebe9a..cfa5428a8b1 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 interface ThreadPredicate { * @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 static Collection findThreadGroups(final Predicate findThreadGroups(final ThreadGroup threadGroup, final boolean recurse, final Predicate predicate) { Objects.requireNonNull(threadGroup, "threadGroup"); Objects.requireNonNull(predicate, "predicate"); - int count = threadGroup.activeGroupCount(); ThreadGroup[] threadGroups; do {