summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/annotations/Commands.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/redstoner/annotations/Commands.java')
-rw-r--r--src/main/java/com/redstoner/annotations/Commands.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/main/java/com/redstoner/annotations/Commands.java b/src/main/java/com/redstoner/annotations/Commands.java
index 537bff0..d5ea130 100644
--- a/src/main/java/com/redstoner/annotations/Commands.java
+++ b/src/main/java/com/redstoner/annotations/Commands.java
@@ -1,15 +1,14 @@
package com.redstoner.annotations;
+import com.redstoner.misc.CommandHolderType;
+
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
-import com.redstoner.misc.CommandHolderType;
-
-@Target(ElementType.TYPE)
-@Retention(RetentionPolicy.RUNTIME)
-public @interface Commands
-{
+@Target (ElementType.TYPE)
+@Retention (RetentionPolicy.RUNTIME)
+public @interface Commands {
CommandHolderType value();
}