This commit is contained in:
Ammar Githam 2021-05-03 17:40:06 +09:00
parent 9dae40fae0
commit b2822b27a1

View File

@ -189,7 +189,7 @@ public final class ThreadManager {
return null;
}
final DirectThread thread = threads.stream()
.filter(t -> t.getThreadId().equals(threadId))
.filter(t -> Objects.equals(t.getThreadId(), threadId))
.findFirst()
.orElse(null);
if (thread != null) {