File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/com/intellij/plugins/bodhi/pmd/core Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44 <description >A plugin to run static analysis using PMD in intelliJ.</description >
55
66 <change-notes >
7- Update PMD plugin to use PMD 6.21 .
7+ Update PMD plugin to use PMD 6.25 .
88 </change-notes >
99
10- <version >1.8.12 </version >
10+ <version >1.8.13 </version >
1111 <vendor >Amit Dev</vendor >
1212
13- <idea-version since-build =" 181 .0" />
13+ <idea-version since-build =" 201 .0" />
1414 <project-components >
1515 <component >
1616 <implementation-class >com.intellij.plugins.bodhi.pmd.PMDProjectComponent</implementation-class >
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public void renderFileViolations(Iterator<RuleViolation> violations) throws IOEx
178178 for (; violations .hasNext ();) {
179179 RuleViolation iRuleViolation = violations .next ();
180180 PMDResultCollector .report .addRuleViolation (iRuleViolation );
181- String message = iRuleViolation .getRule ().getName () + ". " + iRuleViolation .getRule ().getDescription ();
181+ String message = iRuleViolation .getRule ().getName () + ": " + iRuleViolation .getRule ().getMessage ();
182182 DefaultMutableTreeNode node = map .get (message );
183183 if (node == null ) {
184184 node = nodeFactory .createNode (shortMessage (message ));
You can’t perform that action at this time.
0 commit comments