Skip to content

Commit

Permalink
Fixed intentional SpotBug warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanCazabonne committed Sep 14, 2021
1 parent 6ef1f79 commit 7d249d2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions spotbugs-exclude-filter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -298,5 +298,15 @@
<Bug pattern="RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE" />
</Match>

<!-- The following is intentional.
At the construction, the mapper is not set yet However, if the attitude provider is
changed afterwards, it must be changed in the mapper too
-->
<Match>
<Class name="~.*\.IntegratedEphemeris$"/>
<Method name="setAttitudeProvider" />
<Bug pattern="UR_UNINIT_READ_CALLED_FROM_SUPER_CONSTRUCTOR" />
</Match>

</FindBugsFilter>

0 comments on commit 7d249d2

Please sign in to comment.