Skip to content

Commit

Permalink
Update CodeAnalysisResultDto.java
Browse files Browse the repository at this point in the history
  • Loading branch information
catchcatchus authored Sep 23, 2024
1 parent 1074671 commit a451478
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ public class CodeAnalysisResultDto {
private String displayTitle;
private String language; // only be used for analysis result distribution,e.g. review comment title.
private CodeAnalyzerType codeAnalyzerType;

private Map<String, List<CodeAnalysisIssueDto>> issuesByFile = new LinkedHashMap<>();


public CodeAnalysisResultDto(String language, CodeAnalyzerType codeAnalyzerType) {
this.language = language;
this.codeAnalyzerType = codeAnalyzerType;
Expand Down Expand Up @@ -43,7 +41,6 @@ public void addIssues(List<CodeAnalysisIssueDto> codeAnalysisIssueDtoList) {

///-----------------------------------------------


public String getDisplayTitle() {
return displayTitle;
}
Expand Down

0 comments on commit a451478

Please sign in to comment.