Skip to content

Commit

Permalink
style: spotlessApply
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Jul 22, 2024
1 parent ff4cacd commit 4717717
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public class GHSACommand extends AbstractJsonCommand {
@CommandLine.Option(names = {"--publishedSince"}, description = "The UTC date/time to filter advisories that were "
+ "published since the given date")
private ZonedDateTime publishedSince;
@CommandLine.Option(names = {"--classifications"}, description = "The classification of the advisory (\"GENERAL\", " +
"\"MALWARE\")")
@CommandLine.Option(names = {"--classifications"}, description = "The classification of the advisory (\"GENERAL\", "
+ "\"MALWARE\")")
private String classifications;
@CommandLine.Option(names = {"--interactive"}, description = "Displays a progress bar")
private boolean interactive;
Expand Down Expand Up @@ -129,7 +129,7 @@ public Integer timedCall() throws Exception {
jsonOut.writeStartArray();
BasicOutput output = new BasicOutput();
try (GitHubSecurityAdvisoryClient api = builder.build();
IProgressMonitor monitor = new ProgressMonitor(interactive, "GHSA")) {
IProgressMonitor monitor = new ProgressMonitor(interactive, "GHSA")) {
while (api.hasNext()) {
Collection<SecurityAdvisory> list = api.next();
if (list != null) {
Expand Down

0 comments on commit 4717717

Please sign in to comment.