Skip to content

Commit

Permalink
Build with Java 21 as well. Use latest parent to enable this
Browse files Browse the repository at this point in the history
  • Loading branch information
robtimus committed Oct 22, 2023
1 parent 849d922 commit d575d9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
java: [11, 17, 21]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>com.github.robtimus</groupId>
<artifactId>robtimus-parent</artifactId>
<version>1.9</version>
<version>1.10</version>
<relativePath />
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ private void clear(StringBuilder buffer) {
buffer.delete(0, buffer.length());
}

private class ReaderParameterSpliterator implements ParameterStream.Spliterator {
private final class ReaderParameterSpliterator implements ParameterStream.Spliterator {

@Override
public boolean tryAdvance(BiConsumer<? super String, ? super String> action) {
Expand Down

0 comments on commit d575d9a

Please sign in to comment.