Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.

Commit ee11fa1

Browse files
authored
Merge pull request #1 from DataFlowAnalysis/annotations
Fix: Wrong annotation
2 parents 6e05097 + 04f7c71 commit ee11fa1

2 files changed

Lines changed: 160 additions & 147 deletions

File tree

bundles/org.dataflowanalysis.standalone/src/org/dataflowanalysis/standalone/analysis/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ private static WebEditorDfd annotateViolations(WebEditorDfd webEditorDfd, List<D
172172
for (Child child : webEditorDfd.model().children()) {
173173
if (nodeToAnnotationMap.containsKey(child)) {
174174
StringBuilder builder = new StringBuilder();
175-
builder.append(child.annotation().toString());
175+
builder.append(child.annotation().message().toString());
176176
if (builder.toString() != "") builder.append("\n");
177177
builder.append(nodeToAnnotationMap.get(child));
178178

0 commit comments

Comments
 (0)