Compare commits

..

No commits in common. "720fa44eed475ad49c8c68404e3410d4e892b5a6" and "29ddc5594756ec5421da192f83f50b28c58c31b1" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -8,11 +8,11 @@ jobs:
name: Code Quality Check name: Code Quality Check
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v3
with: with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11 - name: Set up JDK 11
uses: actions/setup-java@v5 uses: actions/setup-java@v3
with: with:
distribution: 'temurin' distribution: 'temurin'
java-version: 11 java-version: 11

View File

@ -18,7 +18,6 @@ public enum SpecialFeature implements Feature<Collection> {
ITERATOR_MODIFIABLE, ITERATOR_MODIFIABLE,
MAP_ENTRY, MAP_ENTRY,
DESCENDING, DESCENDING,
REVERSE,
SUBMAP; SUBMAP;
private final Set<Feature<? super Collection>> implied; private final Set<Feature<? super Collection>> implied;