Skip to content

Commit 4ff769f

Browse files
committed
Fix: Correct reported issue with 'EOF' where it should be 'EOL'
resulted from this commit 425299d.
1 parent c210782 commit 4ff769f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ abstract class BaseViolationCheckMojo extends AbstractMojo {
245245
if (log.isErrorEnabled()) {
246246
StringBuilder sb = new StringBuilder()
247247
bugs.each { Node bug ->
248-
sb.append(bugLog(bug)).append(SpotBugsInfo.EOF)
248+
sb.append(bugLog(bug)).append(SpotBugsInfo.EOL)
249249
}
250250
log.error(sb.toString())
251251
}

0 commit comments

Comments
 (0)