Skip to content

Commit

Permalink
Suppress new SpotBugs warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jqno committed Nov 29, 2023
1 parent 1348a99 commit 28fbe35
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,16 @@ private void addExceptions() {
@SuppressWarnings("unused")
private static class JavaApiReflectionClassesContainer {

@SuppressFBWarnings(
value = "UUF_UNUSED_FIELD",
justification = "These fields are accessed through reflection"
)
Object a;

@SuppressFBWarnings(
value = "UUF_UNUSED_FIELD",
justification = "These fields are accessed through reflection"
)
Object b;

public JavaApiReflectionClassesContainer() {}
Expand Down

0 comments on commit 28fbe35

Please sign in to comment.