Browse Source

Remove useless brackets

Lortseam 3 years ago
parent
commit
88cd663187
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/src/main/java/me/lortseam/completeconfig/api/ConfigEntry.java

+ 1 - 1
lib/src/main/java/me/lortseam/completeconfig/api/ConfigEntry.java

@@ -172,7 +172,7 @@ public @interface ConfigEntry {
     /**
      * If applied, renders a slider for this entry. Usually used together with a bounding annotation.
      */
-    @Target({ElementType.FIELD})
+    @Target(ElementType.FIELD)
     @Retention(RetentionPolicy.RUNTIME)
     @interface Slider {