Skip to content

Commit

Permalink
Bugfix - Cve should have an empty constructor (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi authored Apr 19, 2022
1 parent 824de7a commit 0b8deb2
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ public class Cve {
private String cvssV1;
private String cvssV2;

@SuppressWarnings("unused")
public Cve() {
}

@SuppressWarnings("unused")
public Cve(String cveId, String cvssV1, String cvssV2) {
this.cveId = cveId;
this.cvssV1 = cvssV1;
Expand Down

0 comments on commit 0b8deb2

Please sign in to comment.