aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc
diff options
context:
space:
mode:
author zaaarf <zaaarf@proton.me>2023-03-18 19:13:11 +0100
committer zaaarf <zaaarf@proton.me>2023-03-18 19:13:11 +0100
commitc446cca43eaef4200e45c77c88c6ab4e46599a01 (patch)
tree1bd97b231625f754ea131b8f2e548f696b89b2e8 /src/main/java/ftbsc
parenta96417ece93e25148ab21c2f684a7d469f8f4d3f (diff)
chore: forgot to delete FindField
Diffstat (limited to 'src/main/java/ftbsc')
-rw-r--r--src/main/java/ftbsc/lll/processor/annotations/FindField.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/main/java/ftbsc/lll/processor/annotations/FindField.java b/src/main/java/ftbsc/lll/processor/annotations/FindField.java
deleted file mode 100644
index 4063c17..0000000
--- a/src/main/java/ftbsc/lll/processor/annotations/FindField.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package ftbsc.lll.processor.annotations;
-
-import ftbsc.lll.proxies.FieldProxy;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-
-/**
- * Overrides the marked method in the Injector, having the
- * implementation return a built {@link FieldProxy}.
- * @since 0.2.0
- */
-@Retention(RetentionPolicy.CLASS)
-@java.lang.annotation.Target(ElementType.METHOD)
-public @interface FindField {
- /**
- * @return the {@link Class} object containing the desired field,
- * or the {@link Object} class if not specified (the {@link Class}
- * from {@link Patch#value()} is instead used)
- */
- Class<?> parent() default Object.class;
-
- /**
- * The name of the field to find. If omitted, the name of the annotated
- * method will be used.
- * @return the name of the field, will default to the empty string
- */
- String name() default "";
-}