2 Commits
Author SHA1 Message Date
Speiger 720fa44eed Whoops forgot the special cases 2026-05-11 00:25:20 +02:00
Speiger c46baa10b4 Updated Workflow 2026-05-11 00:21:34 +02:00
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -8,11 +8,11 @@ jobs:
name: Code Quality Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 11
@@ -18,6 +18,7 @@ public enum SpecialFeature implements Feature<Collection> {
ITERATOR_MODIFIABLE,
MAP_ENTRY,
DESCENDING,
REVERSE,
SUBMAP;
private final Set<Feature<? super Collection>> implied;