Remove redundant qualifiers

This commit is contained in:
Benedikt Ritter 2015-05-07 18:01:04 +02:00
parent 7a2b1c1c3f
commit 507451866c
1 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,7 @@ public ThreadUtils() {
* A predicate for selecting threads.
*/
//if java minimal version for lang becomes 1.8 extend this interface from java.util.function.Predicate
public static interface ThreadPredicate /*extends java.util.function.Predicate<Thread>*/{
public interface ThreadPredicate /*extends java.util.function.Predicate<Thread>*/{
/**
* Evaluates this predicate on the given thread.
@ -268,7 +268,7 @@ public static interface ThreadPredicate /*extends java.util.function.Predicate<T
* A predicate for selecting threadgroups.
*/
//if java minimal version for lang becomes 1.8 extend this interface from java.util.function.Predicate
public static interface ThreadGroupPredicate /*extends java.util.function.Predicate<ThreadGroup>*/{
public interface ThreadGroupPredicate /*extends java.util.function.Predicate<ThreadGroup>*/{
/**
* Evaluates this predicate on the given threadgroup.