Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
#53 Fixed wrong order of elements inside versioning issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sdibernardo committed Jun 22, 2018
1 parent 640a23d commit ff39fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/viadee/bpm/vPAV/output/IssueWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ public static Collection<CheckerIssue> createIssue(final Rule rule, final Critic
final Collection<CheckerIssue> issues = new ArrayList<CheckerIssue>();

final BaseElement baseElement = element.getBaseElement();

issues.add(new CheckerIssue(rule.getName(), rule.getRuleDescription(), classification,
element.getProcessdefinition(), resourceFile,
baseElement.getAttributeValue(BpmnModelConstants.BPMN_ATTRIBUTE_ID),
baseElement.getAttributeValue(BpmnModelConstants.BPMN_ATTRIBUTE_NAME), message));
baseElement.getAttributeValue(BpmnModelConstants.BPMN_ATTRIBUTE_NAME), message, null));

return issues;
}
Expand Down

0 comments on commit ff39fa4

Please sign in to comment.