We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8303595 commit 4827099Copy full SHA for 4827099
net.lecousin.core/src/main/java/net/lecousin/framework/concurrent/TaskMonitoring.java
@@ -8,9 +8,13 @@
8
import java.lang.management.ThreadMXBean;
9
import java.util.concurrent.ThreadFactory;
10
11
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
12
+
13
import net.lecousin.framework.application.LCCore;
14
import net.lecousin.framework.util.DebugUtil;
15
16
+/** Monitoring of multi-threading system to avoid dead tasks. */
17
+@SuppressFBWarnings({"MS_CANNOT_BE_FINAL", "MS_SHOULD_BE_FINAL" })
18
public final class TaskMonitoring {
19
20
public static boolean checkLocksOfBlockingTasks = false;
0 commit comments