From 3cac3a997eb5ae8c0e4eb80477e64a66b6c03372 Mon Sep 17 00:00:00 2001 From: Speiger Date: Fri, 8 Apr 2022 00:24:37 +0200 Subject: [PATCH] And hopefully the last javaDoc fixes --- .github/workflows/build_validator.yml | 1 - .../templates/collections/AbstractCollection.template | 1 - .../templates/maps/interfaces/SortedMap.template | 6 ++++++ .../assets/collections/templates/sets/SortedSet.template | 4 ++++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_validator.yml b/.github/workflows/build_validator.yml index e6ea6a06..de8aed86 100644 --- a/.github/workflows/build_validator.yml +++ b/.github/workflows/build_validator.yml @@ -28,7 +28,6 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.jdk }} - distribution: 'adopt' - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b - name: Make gradlew executable diff --git a/src/builder/resources/speiger/assets/collections/templates/collections/AbstractCollection.template b/src/builder/resources/speiger/assets/collections/templates/collections/AbstractCollection.template index 083ad9af..6443b86e 100644 --- a/src/builder/resources/speiger/assets/collections/templates/collections/AbstractCollection.template +++ b/src/builder/resources/speiger/assets/collections/templates/collections/AbstractCollection.template @@ -100,7 +100,6 @@ public abstract class ABSTRACT_COLLECTION KEY_GENERIC_TYPE extends AbstractColle * This implementation iterates over the elements of the collection and checks if they are stored in this collection * @param c the elements that should be checked for * @return true if any element is in this collection - * @deprecated if this is a primitive collection * @throws java.lang.NullPointerException if the collection is null */ @Override diff --git a/src/builder/resources/speiger/assets/collections/templates/maps/interfaces/SortedMap.template b/src/builder/resources/speiger/assets/collections/templates/maps/interfaces/SortedMap.template index a720ad38..5169d74b 100644 --- a/src/builder/resources/speiger/assets/collections/templates/maps/interfaces/SortedMap.template +++ b/src/builder/resources/speiger/assets/collections/templates/maps/interfaces/SortedMap.template @@ -33,6 +33,7 @@ public interface SORTED_MAP KEY_VALUE_GENERIC_TYPE extends SortedMap