Skip to content

Commit

Permalink
[#1504] fix Java 5 compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Dec 7, 2021
1 parent beeef2d commit 1cfa8c9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/java/picocli/Issue1351.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ public String next() {
return this.a[i];
}
}

public void remove() {
throw new UnsupportedOperationException();
}
}

static class MyIterable implements Iterable<String> {
Expand Down

0 comments on commit 1cfa8c9

Please sign in to comment.