Skip to content

Commit

Permalink
fixup: compiler flags from warning to error, error category from other
Browse files Browse the repository at this point in the history
to fatal
  • Loading branch information
gireeshpunathil committed Apr 23, 2023
1 parent 32c7e04 commit d3090bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ protected void parseManifest(IDocument document, IProgressMonitor monitor) {
}
str.deleteCharAt(str.length() - 1);
VirtualMarker marker = report(PDECoreMessages.BundleErrorReporter_noNameHeader, start + 1,
CompilerFlags.WARNING, PDEMarkerFactory.M_EXTRANEOUS_EMPTY_LINES, PDEMarkerFactory.CAT_OTHER);
CompilerFlags.ERROR, PDEMarkerFactory.M_EXTRANEOUS_EMPTY_LINES, PDEMarkerFactory.CAT_FATAL);
if (marker != null) {
marker.setAttribute("emptyLine", str.toString()); //$NON-NLS-1$
}
Expand Down

0 comments on commit d3090bd

Please sign in to comment.