Remove extra blank lines
This commit is contained in:
Gary D. Gregory 2025-01-05 10:50:52 -05:00
parent b046e22faf
commit e55e2b7475
1 changed files with 0 additions and 2 deletions

View File

@ -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 {