Skip to content

Commit 50bc8c9

Browse files
committed
[ci] Move comment above line
1 parent b9ac9c6 commit 50bc8c9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/groovy/org/codehaus/mojo/spotbugs/BaseViolationCheckMojo.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,8 @@ abstract class BaseViolationCheckMojo extends AbstractMojo {
527527
def logMsg = priorityName + ': ' + bug.LongMessage.text() + SpotBugsInfo.BLANK + bug.SourceLine.'@classname' + SpotBugsInfo.BLANK +
528528
bug.SourceLine.Message.text() + SpotBugsInfo.BLANK + bug.'@type'
529529

530-
if (priorityNum <= priorityThresholdNum) { // lower is more severe
530+
// lower is more severe
531+
if (priorityNum <= priorityThresholdNum) {
531532
bugCountAboveThreshold += 1
532533
log.error(logMsg)
533534
} else {

0 commit comments

Comments
 (0)