Skip to content

Commit

Permalink
Update src/main/java/org/spdx/tools/Verify.java
Browse files Browse the repository at this point in the history
Signed-off-by: Arthit Suriyawongkul <[email protected]>

Co-authored-by: Gary O'Neall <[email protected]>
  • Loading branch information
bact and goneall authored Dec 17, 2024
1 parent ffa00ad commit ee88fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/spdx/tools/Verify.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void main(String[] args) {
}
// separate out the warning from errors
List<String> warnings = new ArrayList<>();
List<String> errors = new ArrayList<String>();
List<String> errors = new ArrayList<>();
for (String verifyMsg : verify) {
if (verifyMsg.contains(" is deprecated.")) {
warnings.add(verifyMsg);
Expand Down

0 comments on commit ee88fc7

Please sign in to comment.