Skip to content

Commit

Permalink
taking the full description (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalk007 authored Sep 19, 2024
1 parent 0888199 commit 7d10fa9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ List<FileTreeNode> createSpecificFileIssueNodes(List<JFrogSecurityWarning> warni

FileIssueNode issueNode = new SastIssueNode(warning.getReason(),
warning.getFilePath(), warning.getLineStart(), warning.getColStart(), warning.getLineEnd(), warning.getColEnd(),
warning.getReason(), warning.getLineSnippet(), warning.getCodeFlows(), warning.getSeverity(), warning.getRuleID());
warning.getScannerSearchTarget(), warning.getLineSnippet(), warning.getCodeFlows(), warning.getSeverity(), warning.getRuleID());
fileNode.addIssue(issueNode);
}
return new ArrayList<>(results.values());
Expand Down

0 comments on commit 7d10fa9

Please sign in to comment.