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
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v5
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11

View File

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