diff --git a/build.gradle b/build.gradle index aa9faad8e..c73873f28 100644 --- a/build.gradle +++ b/build.gradle @@ -298,7 +298,7 @@ checkstyle { "year" : project.inceptionYear ] configFile = file("checkstyle.xml") - toolVersion = '8.43' + toolVersion = '8.44' } // Source compiler configuration diff --git a/src/ap/java/org/spongepowered/tools/obfuscation/mirror/AnnotationHandle.java b/src/ap/java/org/spongepowered/tools/obfuscation/mirror/AnnotationHandle.java index 6b2c9f630..c74af614e 100644 --- a/src/ap/java/org/spongepowered/tools/obfuscation/mirror/AnnotationHandle.java +++ b/src/ap/java/org/spongepowered/tools/obfuscation/mirror/AnnotationHandle.java @@ -110,8 +110,8 @@ public String toString() { * * @param key key * @param defaultValue value to return if the key is not set or not present - * @return value or default if not set * @param duck type + * @return value or default if not set */ @Override @SuppressWarnings({ "unchecked", "rawtypes" }) diff --git a/src/launchwrapper/java/org/spongepowered/asm/service/mojang/Blackboard.java b/src/launchwrapper/java/org/spongepowered/asm/service/mojang/Blackboard.java index afe6a6f1e..8537b37ea 100644 --- a/src/launchwrapper/java/org/spongepowered/asm/service/mojang/Blackboard.java +++ b/src/launchwrapper/java/org/spongepowered/asm/service/mojang/Blackboard.java @@ -64,8 +64,8 @@ public IPropertyKey resolveKey(String name) { * Get a value from the blackboard and duck-type it to the specified type * * @param key blackboard key - * @return value * @param duck type + * @return value */ @Override @SuppressWarnings("unchecked") @@ -90,8 +90,8 @@ public final void setProperty(IPropertyKey key, Object value) { * * @param key blackboard key * @param defaultValue value to return if the key is not set or is null - * @return value from blackboard or default value * @param duck type + * @return value from blackboard or default value */ @Override @SuppressWarnings("unchecked") diff --git a/src/main/java/org/spongepowered/asm/mixin/injection/struct/InjectionNodes.java b/src/main/java/org/spongepowered/asm/mixin/injection/struct/InjectionNodes.java index 16d873238..53461fabd 100644 --- a/src/main/java/org/spongepowered/asm/mixin/injection/struct/InjectionNodes.java +++ b/src/main/java/org/spongepowered/asm/mixin/injection/struct/InjectionNodes.java @@ -184,8 +184,8 @@ public boolean hasDecoration(String key) { * Get the specified decoration * * @param key meta key - * @return decoration value or null if absent * @param value type + * @return decoration value or null if absent */ @SuppressWarnings("unchecked") public V getDecoration(String key) {