summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/annotations/Commands.java
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2019-02-08 18:49:51 -0500
committerLogan Fick <logaldeveloper@protonmail.com>2019-02-08 18:49:51 -0500
commit7ca3bc7379215b7726480ebb14c3dd07fe521f62 (patch)
tree70abc6560aa910a33674a99e2532ba4c52e606a9 /src/main/java/com/redstoner/annotations/Commands.java
parent6dfe3195cd6d939997deb8e89cce220ba625b8ac (diff)
Reformatted code.
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();
}