Skip to content

Commit

Permalink
BUILD fix Java 5 compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Feb 9, 2022
1 parent 5e01b72 commit 3eea1be
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/test/java/picocli/Issue1528.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@ public class Issue1528 {

@Command(name = "main", subcommands = SubCommand.class)
static class MainCommand implements Callable<Integer> {
@Override
public Integer call() throws Exception {
return null;
}
}

@Command(name = "sub")
static class SubCommand implements Callable<Integer> {
@Override
public Integer call() throws Exception {
return null;
}
Expand Down

0 comments on commit 3eea1be

Please sign in to comment.