We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ac9c6 commit 50bc8c9Copy full SHA for 50bc8c9
src/main/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojo.groovy
@@ -527,7 +527,8 @@ abstract class BaseViolationCheckMojo extends AbstractMojo {
527
def logMsg = priorityName + ': ' + bug.LongMessage.text() + SpotBugsInfo.BLANK + bug.SourceLine.'@classname' + SpotBugsInfo.BLANK +
528
bug.SourceLine.Message.text() + SpotBugsInfo.BLANK + bug.'@type'
529
530
- if (priorityNum <= priorityThresholdNum) { // lower is more severe
+ // lower is more severe
531
+ if (priorityNum <= priorityThresholdNum) {
532
bugCountAboveThreshold += 1
533
log.error(logMsg)
534
} else {
0 commit comments