Skip to content

Commit

Permalink
Disabled DontReusePublicIdentifiers due to false positives rate
Browse files Browse the repository at this point in the history
  • Loading branch information
gtoison authored and iloveeclipse committed Oct 16, 2023
1 parent 6f98143 commit 3db5c68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Currently the versioning policy of this project follows [Semantic Versioning v2.
### Fixed
- Fixed schema location for findbugsfilter.xsd ([[#1416](https://github.com/spotbugs/spotbugs/issues/1416)])
- Fixed missing null checks ([[#2629](https://github.com/spotbugs/spotbugs/issues/2629)])
- Disabled DontReusePublicIdentifiers due to the high false positives rate ([[#2627](https://github.com/spotbugs/spotbugs/issues/2627)])

## 4.8.0 - 2023-10-11

Expand Down
3 changes: 2 additions & 1 deletion spotbugs/etc/findbugs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,8 @@
<Detector class="edu.umd.cs.findbugs.detect.FindArgumentAssertions" speed="fast"
reports="AA_ASSERTION_OF_ARGUMENTS"/>
<Detector class="edu.umd.cs.findbugs.detect.DontReusePublicIdentifiers" speed="fast"
reports="PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_CLASS_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_FIELD_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_METHOD_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_LOCAL_VARIABLE_NAMES"/>
reports="PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_CLASS_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_FIELD_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_METHOD_NAMES,PI_DO_NOT_REUSE_PUBLIC_IDENTIFIERS_LOCAL_VARIABLE_NAMES"
disabled="true"/>
<!-- Bug Categories -->
<BugCategory category="NOISE" hidden="true"/>

Expand Down

0 comments on commit 3db5c68

Please sign in to comment.