We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e04d1dd commit 122ee27Copy full SHA for 122ee27
src/main/java/com/cloudbees/jenkins/support/SafeLog.java
@@ -24,6 +24,7 @@
24
25
package com.cloudbees.jenkins.support;
26
27
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
28
import java.io.BufferedWriter;
29
import java.io.IOException;
30
import java.nio.file.Files;
@@ -32,6 +33,7 @@
32
33
import java.time.Instant;
34
import jenkins.util.JenkinsJVM;
35
36
+@SuppressFBWarnings(value = "NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE", justification = "shut the front door")
37
public class SafeLog {
38
public static final Path file;
39
0 commit comments