Skip to content

Commit f46a60b

Browse files
committed
Fix compiler error under Java 5
1 parent 8713bbd commit f46a60b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/picocli/Issue1767.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,12 @@ public class Issue1767 {
2020
static class TestCommand implements Callable<Integer> {
2121
@ArgGroup TestArgGroup testArgGroup;
2222
@Spec CommandSpec spec;
23-
23+
2424
public static class TestArgGroup {
2525
@Option(names = "-r")
2626
public Integer option1;
2727
}
2828

29-
@Override
3029
public Integer call() throws Exception {
3130
Integer value = spec.options().get(0).getValue();
3231
return value==null ? 0 : value;

0 commit comments

Comments
 (0)