We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1273af6 commit 4f0bc3bCopy full SHA for 4f0bc3b
src/main/java/org/jenkinsci/plugins/workflow/log/LogStorage.java
@@ -24,6 +24,7 @@
24
25
package org.jenkinsci.plugins.workflow.log;
26
27
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
28
import hudson.ExtensionList;
29
import hudson.console.AnnotatedLargeText;
30
import hudson.console.ConsoleAnnotationOutputStream;
@@ -119,6 +120,7 @@ public interface LogStorage {
119
120
* @return a possibly temporary file
121
* @deprecated Only used for compatibility with {@link Run#getLogFile}.
122
*/
123
+ @SuppressFBWarnings(value = "REC_CATCH_EXCEPTION", justification = "silly rule")
124
@Deprecated
125
default @Nonnull File getLogFile(@Nonnull FlowExecutionOwner.Executable build, boolean complete) {
126
try {
0 commit comments