File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
annotations/java/org/truffleruby
main/java/org/truffleruby/core/exception Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 12
12
import java .lang .annotation .Retention ;
13
13
import java .lang .annotation .RetentionPolicy ;
14
14
15
- /** Used to suppress <a href="http://findbugs.sourceforge.net">FindBugs </a> warnings. */
15
+ /** Used to suppress <a href="http://findbugs.sourceforge.net">SpotBugs </a> warnings. */
16
16
@ Retention (RetentionPolicy .CLASS )
17
17
public @interface SuppressFBWarnings {
18
- /** The set of FindBugs <a href="http ://findbugs.sourceforge.net/ bugDescriptions.html">warnings</a> that are to be
19
- * suppressed in annotated element. The value can be a bug category, kind or pattern. */
18
+ /** The set of SpotBugs <a href="https ://spotbugs.readthedocs.io/en/stable/ bugDescriptions.html">warnings</a> that
19
+ * are suppressed for the annotated element. The value can be a bug category, kind or pattern. */
20
20
String [] value ();
21
21
}
Original file line number Diff line number Diff line change 11
11
12
12
import com .oracle .truffle .api .TruffleException ;
13
13
import com .oracle .truffle .api .nodes .Node ;
14
+ import org .truffleruby .SuppressFBWarnings ;
14
15
16
+ @ SuppressFBWarnings ("Se" )
15
17
public class GetBacktraceException extends RuntimeException implements TruffleException {
16
18
17
19
private static final long serialVersionUID = 2633487517169337464L ;
You can’t perform that action at this time.
0 commit comments