Skip to content

Commit 3ee9cc8

Browse files
committedAug 26, 2018
Add missing spaces
1 parent bff7521 commit 3ee9cc8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/main/java/org/apache/commons/lang3/ThreadUtils.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ public interface ThreadGroupPredicate /*extends java.util.function.Predicate<Thr
272272
/**
273273
* A predicate implementation which always returns true.
274274
*/
275-
private static final class AlwaysTruePredicate implements ThreadPredicate, ThreadGroupPredicate{
275+
private static final class AlwaysTruePredicate implements ThreadPredicate, ThreadGroupPredicate {
276276

277277
private AlwaysTruePredicate() {
278278
}
@@ -357,7 +357,7 @@ public boolean test(final Thread thread) {
357357
* @throws SecurityException if the current thread cannot modify
358358
* thread groups from this thread's thread group up to the system thread group
359359
*/
360-
public static Collection<Thread> findThreads(final ThreadPredicate predicate){
360+
public static Collection<Thread> findThreads(final ThreadPredicate predicate) {
361361
return findThreads(getSystemThreadGroup(), true, predicate);
362362
}
363363

@@ -372,7 +372,7 @@ public static Collection<Thread> findThreads(final ThreadPredicate predicate){
372372
* @throws SecurityException if the current thread cannot modify
373373
* thread groups from this thread's thread group up to the system thread group
374374
*/
375-
public static Collection<ThreadGroup> findThreadGroups(final ThreadGroupPredicate predicate){
375+
public static Collection<ThreadGroup> findThreadGroups(final ThreadGroupPredicate predicate) {
376376
return findThreadGroups(getSystemThreadGroup(), true, predicate);
377377
}
378378

@@ -419,7 +419,7 @@ public static Collection<Thread> findThreads(final ThreadGroup group, final bool
419419
* @throws SecurityException if the current thread cannot modify
420420
* thread groups from this thread's thread group up to the system thread group
421421
*/
422-
public static Collection<ThreadGroup> findThreadGroups(final ThreadGroup group, final boolean recurse, final ThreadGroupPredicate predicate){
422+
public static Collection<ThreadGroup> findThreadGroups(final ThreadGroup group, final boolean recurse, final ThreadGroupPredicate predicate) {
423423
Validate.isTrue(group != null, "The group must not be null");
424424
Validate.isTrue(predicate != null, "The predicate must not be null");
425425

0 commit comments

Comments
 (0)
Please sign in to comment.