aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-03-18 20:23:17 +0100
committer zaaarf <zaaarf@proton.me>2023-03-18 20:23:17 +0100
commitfd06fe810d1140504afaacc0c1bbf8507de717ee (patch)
treef0c1053662d245bead4b53232897dd3eb0271ea1
parent3affc40b514336a497d157a3e03c98931dfd3edf (diff)
chore: javadocs0.4.0
-rw-r--r--src/main/java/ftbsc/lll/processor/tools/ASTUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/ftbsc/lll/processor/tools/ASTUtils.java b/src/main/java/ftbsc/lll/processor/tools/ASTUtils.java
index 76e54d4..578d49f 100644
--- a/src/main/java/ftbsc/lll/processor/tools/ASTUtils.java
+++ b/src/main/java/ftbsc/lll/processor/tools/ASTUtils.java
@@ -105,13 +105,13 @@ public class ASTUtils {
}
/**
- * Extracts
+ * Extracts the inner class name as a String from the annotation.
* @param ann the annotation containing the class
* @param innerClassFunction the annotation function returning the inner class name
* @param anonymousCounterFunction the annotation function returning the anonymous class counter
* @param <T> the type of the annotation carrying the information
- * @return the fully qualified name of the given class
- * @since 0.3.0
+ * @return the name of the inner class, or null if the target isn't an inner class
+ * @since 0.4.0
*/
public static <T extends Annotation> String getInnerName(T ann, Function<T, String> innerClassFunction, Function<T, Integer> anonymousCounterFunction) {
String inner = null;