Skip to content

Commit

Permalink
Fix ConfigurationArgumentError annotation was not working
Browse files Browse the repository at this point in the history
  • Loading branch information
bivashy committed Jul 22, 2022
1 parent a5aece1 commit f4a31f9
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
package me.mastercapexd.auth.messenger.commands.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface ConfigurationArgumentError {
String value();
}

1 comment on commit f4a31f9

@bivashy
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah...

i hate myself for that small mistakes :(

Please sign in to comment.