Plex-FAWE/worldedit-core/src/main/java/com/sk89q/worldedit/command/util/annotation/Link.java
Alex 64442a8051
refactor: Tackle a few Semgrep and ErrorProne violations (#1520)
* refactor: Tackle a few Semgrep and ErrorProne violations

* Address comments
2022-01-07 12:45:53 +01:00

16 lines
317 B
Java

package com.sk89q.worldedit.command.util.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Link {
//FAWE start - address rawtypes
Class<?> clazz() default Link.class;
//FAWE end
String value();
}