Skip to content

Commit 8d22397

Browse files
authored
Merge pull request #203 from jborgers/Issue202
Issue202 Nicer icon for severity Critical / priority medium-high
2 parents be31039 + cd9dfcc commit 8d22397

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/intellij/plugins/bodhi/pmd/tree/Severity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
public enum Severity {
2020
BLOCKER(RulePriority.HIGH, "Blocker", AllIcons.Ide.FatalError, new Color(188, 98, 98)),
21-
CRITICAL(RulePriority.MEDIUM_HIGH, "Critical", AllIcons.RunConfigurations.TestError, new Color(152, 98, 90)),
21+
CRITICAL(RulePriority.MEDIUM_HIGH, "Critical", AllIcons.Debugger.KillProcess, new Color(152, 98, 90)),
2222
MAJOR(RulePriority.MEDIUM, "Major", AllIcons.General.Warning, new Color(142, 122, 38)),
2323
MINOR(RulePriority.MEDIUM_LOW, "Minor", AllIcons.Nodes.WarningIntroduction, new Color(126, 126, 126)),
2424
INFO(RulePriority.LOW, "Info", AllIcons.General.Information, new Color(48, 116, 148));

0 commit comments

Comments
 (0)