mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-29 20:19:06 +00:00
Lint
This commit is contained in:
13
src/main/java/com/volmit/iris/util/DependsOn.java
Normal file
13
src/main/java/com/volmit/iris/util/DependsOn.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.volmit.iris.util;
|
||||
|
||||
import static java.lang.annotation.ElementType.FIELD;
|
||||
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Retention(RUNTIME)
|
||||
@Target({ FIELD })
|
||||
public @interface DependsOn {
|
||||
String[] value();
|
||||
}
|
||||
Reference in New Issue
Block a user