remove compiler warnings from ThreadUtils

This commit is contained in:
Pascal Schumacher 2015-05-05 23:31:20 +02:00
parent d6dd2b4cd4
commit 7d5a61ed64
1 changed files with 3 additions and 3 deletions

View File

@ -128,7 +128,7 @@ public static Collection<Thread> findThreadsByName(final String threadName, fina
final Collection<ThreadGroup> threadGroups = findThreadGroups(new NamePredicate(threadGroupName));
if(threadGroups.isEmpty()) {
return Collections.EMPTY_LIST;
return Collections.emptyList();
}
final Collection<Thread> result = new ArrayList<Thread>();
@ -292,12 +292,12 @@ private AlwaysTruePredicate() {
}
@Override
public boolean test(@SuppressWarnings("unused") final ThreadGroup threadGroup) {
public boolean test(final ThreadGroup threadGroup) {
return true;
}
@Override
public boolean test(@SuppressWarnings("unused") final Thread thread) {
public boolean test(final Thread thread) {
return true;
}
}