From bdd877abe8bcbaca93fc7e959cf9a738d43342a1 Mon Sep 17 00:00:00 2001 From: coolGi2007 Date: Tue, 25 Jan 2022 04:54:53 +0000 Subject: [PATCH] Added FileComment --- .../seibel/lod/core/config/ConfigAnnotations.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/main/java/com/seibel/lod/core/config/ConfigAnnotations.java b/src/main/java/com/seibel/lod/core/config/ConfigAnnotations.java index a578898f9..dff0c9298 100644 --- a/src/main/java/com/seibel/lod/core/config/ConfigAnnotations.java +++ b/src/main/java/com/seibel/lod/core/config/ConfigAnnotations.java @@ -44,4 +44,17 @@ public class ConfigAnnotations { { } + + /** + * Adds a comment to the file. + * + * DONT USE AS IT WILL BE REMOVED IN THE REWORK OF THE CONFIG + */ + @Retention(RetentionPolicy.RUNTIME) + @Target(ElementType.FIELD) + @Deprecated + public @interface FileComment + { + + } }