Skip to content

Commit

Permalink
Fixed broken references
Browse files Browse the repository at this point in the history
  • Loading branch information
cowwoc committed Jul 29, 2024
1 parent c94a0f5 commit c46f751
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions build/src/main/resources/pmd-file-exclusions.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# Must use consistent method name across all validators
validator.com.github.cowwoc.requirements10.java.PrimitiveBooleanValidator=BooleanGetMethodName
com.github.cowwoc.requirements.java.validator.PrimitiveBooleanValidator=BooleanGetMethodName
# WORKAROUND: https://github.com/pmd/pmd/issues/4861
validator.internal.com.github.cowwoc.requirements10.java.JavaValidatorsImpl=UnusedPrivateMethod
com.github.cowwoc.requirements.java.internal.validator.JavaValidatorsImpl=UnusedPrivateMethod
# WORKAROUND: https://github.com/pmd/pmd/issues/4910
message.internal.com.github.cowwoc.requirements10.java.ComparableMessages=ConsecutiveAppendsShouldReuse
com.github.cowwoc.requirements.java.internal.message.EqualMessages=ConsecutiveAppendsShouldReuse
com.github.cowwoc.requirements.java.internal.message.ComparableMessages=ConsecutiveAppendsShouldReuse
# WORKAROUND: https://github.com/pmd/pmd/issues/4577
util.internal.com.github.cowwoc.requirements10.java.Exceptions=UseArraysAsList
com.github.cowwoc.requirements.java.internal.util.Exceptions=UseArraysAsList
# Long URI
util.internal.com.github.cowwoc.requirements10.java.ReentrantStampedLock=CommentSize
com.github.cowwoc.requirements.java.internal.util.ReentrantStampedLock=CommentSize
# Necessary evil when we cannot throw an exception or log an error
terminal.internal.com.github.cowwoc.requirements10.java.Terminal=SystemPrintln
com.github.cowwoc.requirements.java.internal.terminal.Terminal=SystemPrintln
# WORKAROUND: https://github.com/pmd/pmd/issues/5043
validator.internal.com.github.cowwoc.requirements10.java.Doubles=LambdaCanBeMethodReference
com.github.cowwoc.requirements.java.internal.validator.Doubles=LambdaCanBeMethodReference
# WORKAROUND: https://github.com/pmd/pmd/issues/5043
validator.internal.com.github.cowwoc.requirements10.java.Floats=LambdaCanBeMethodReference
com.github.cowwoc.requirements.java.internal.validator.Floats=LambdaCanBeMethodReference

0 comments on commit c46f751

Please sign in to comment.