We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7e821d commit c8acdbbCopy full SHA for c8acdbb
1 file changed
src/main/java/com/github/pinont/singularitylib/api/annotation/AutoRegister.java
@@ -1,8 +1,5 @@
1
package com.github.pinont.singularitylib.api.annotation;
2
3
-import java.lang.annotation.ElementType;
4
-import java.lang.annotation.Target;
5
-
6
/**
7
* Annotation to mark classes for automatic registration by the plugin.
8
* This annotation is used to mark classes that need to be registered during the plugin's startup process.
@@ -13,7 +10,6 @@
13
10
* It should only be used when the class extends {@code CustomItem}, {@code SimpleCommand}, or {@code Listener}.
14
11
*/
15
12
16
-@Target({ElementType.TYPE})
17
public @interface AutoRegister {
18
19
* Indicates that the annotated class should be automatically registered by the plugin.
0 commit comments