Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
# Conflicts:
#	pom.xml
  • Loading branch information
cqgong committed Mar 26, 2024
2 parents c9fa876 + 32ff043 commit 37613ff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ public ExternalAnalysisResult(AnalysisStoredResult result, Integer version) {
this.notFound.add(new ExternalIdentifier(ai));
}

this.warnings = new ArrayList<>(result.getWarnings());
if (result.getWarnings() != null) {
this.warnings = new ArrayList<>(result.getWarnings());
}

}

public ExternalAnalysisSummary getSummary() {
Expand Down

0 comments on commit 37613ff

Please sign in to comment.