Skip to content

Commit

Permalink
fix: MutableClasses: fix reference to java.awt.Cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
candrews committed Sep 13, 2021
1 parent f0e59dc commit 3b8ccf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@ Currently the versioning policy of this project follows [Semantic Versioning v2.
## Changed
- Add bug code to report in fancy-hist.xsl ([#1688](https://github.com/spotbugs/spotbugs/pull/1688))
- Fixed java.util.Locale as being flagged as EI
- Fixed reference to java.awt.Cursor which caused it to be flagged as EI

### Fixed
- Fixed immutable java.lang.Class as being flagged as EI ([#1695](https://github.com/spotbugs/spotbugs/pull/1695))
Expand Down
Expand Up @@ -20,7 +20,7 @@ public class MutableClasses {
"java.lang.Float", "java.lang.StackTraceElement", "java.lang.Class", "java.math.BigInteger",
"java.math.Decimal", "java.io.File", "java.awt.Font", "java.awt.BasicStroke",
"java.awt.Color", "java.awt.GradientPaint", "java.awt.LinearGradientPaint",
"java.awt.RadialGradientPaint", "java.Cursor.", "java.util.Locale", "java.util.UUID", "java.net.URL",
"java.awt.RadialGradientPaint", "java.awt.Cursor", "java.util.Locale", "java.util.UUID", "java.net.URL",
"java.net.URI", "java.net.Inet4Address", "java.net.Inet6Address", "java.net.InetSocketAddress",
"java.security.Permission", "com.google.common.collect.ImmutableBiMap",
"com.google.common.collect.ImmutableClassToInstanceMap",
Expand Down

0 comments on commit 3b8ccf8

Please sign in to comment.