diff options
author | zaaarf <zaaarf@proton.me> | 2023-05-03 21:42:10 +0200 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-05-03 21:42:10 +0200 |
commit | 5c2d780acbae1a7786d9c47711d3bf7e7670d7c0 (patch) | |
tree | 055e68c20a6ad6d795270a81d0142a6f2229dc8d /src/main/java | |
parent | 34f8ded1a8b6dd73af485bd15ef6988ca67c1a6a (diff) |
chore: fix indentation in javadocs
Diffstat (limited to 'src/main/java')
3 files changed, 9 insertions, 10 deletions
diff --git a/src/main/java/ftbsc/lll/processor/LilleroProcessor.java b/src/main/java/ftbsc/lll/processor/LilleroProcessor.java index 32f5826..533375d 100644 --- a/src/main/java/ftbsc/lll/processor/LilleroProcessor.java +++ b/src/main/java/ftbsc/lll/processor/LilleroProcessor.java @@ -65,11 +65,10 @@ public class LilleroProcessor extends AbstractProcessor { public static boolean obfuscateInjectorMetadata = true; /** - * Initializes the processor with the processing environment by - * setting the {@code processingEnv} field to the value of the - * {@code processingEnv} argument. + * Initializes the processor with the processing environment by setting the + * {@code processingEnv} field to the value of the {@code processingEnv} argument. * @param processingEnv environment to access facilities the tool framework - * provides to the processor + * provides to the processor * @throws IllegalStateException if this method is called more than once. * @since 0.3.0 */ diff --git a/src/main/java/ftbsc/lll/processor/annotations/Find.java b/src/main/java/ftbsc/lll/processor/annotations/Find.java index e684cb5..14c1cc0 100644 --- a/src/main/java/ftbsc/lll/processor/annotations/Find.java +++ b/src/main/java/ftbsc/lll/processor/annotations/Find.java @@ -30,8 +30,8 @@ public @interface Find { * fully-qualified name. If it's a number instead of a valid name, the class will be * treated as an anonymous class, and will therefore be automatically unverified. * For a {@link TypeProxy}, this refers to the class itself rather than the parent. - * @return the name of the inner class that contains the target, - * defaults to empty string (not an inner class) + * @return the name of the inner class that contains the target, defaults to empty + * string (not an inner class) * @since 0.5.0 */ String innerName() default ""; @@ -45,8 +45,8 @@ public @interface Find { * relevant class. It is generally recommended that you use a @link Target} stub * for methods, as this can lead to unpredictable behaviour at runtime. * It will have no effect on a {@link TypeProxy}. - * @return the name of the target, will default to the empty string - * (the name of the annotated method will instead be used). + * @return the name of the target, will default to the empty string (the name of + * the annotated method will instead be used). * @since 0.5.0 */ String name() default ""; diff --git a/src/main/java/ftbsc/lll/processor/annotations/Patch.java b/src/main/java/ftbsc/lll/processor/annotations/Patch.java index 0f73cdd..1254663 100644 --- a/src/main/java/ftbsc/lll/processor/annotations/Patch.java +++ b/src/main/java/ftbsc/lll/processor/annotations/Patch.java @@ -23,8 +23,8 @@ public @interface Patch { * This is the inner class name to append after a $ symbol to the already acquired * fully-qualified name. If it's a number instead of a valid name, the class will be * treated as an anonymous class, and will therefore be automatically unverified. - * @return the name of the inner class that contains the target, - * defaults to empty string (not an inner class) + * @return the name of the inner class that contains the target, defaults to empty + * string (not an inner class) * @since 0.5.0 */ String innerName() default ""; |