Last active
August 29, 2015 14:10
-
-
Save AndrewReitz/ab9d6c10decaf8bb1905 to your computer and use it in GitHub Desktop.
@ಠ__ಠ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package lol; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.Target; | |
import static java.lang.annotation.ElementType.CONSTRUCTOR; | |
import static java.lang.annotation.ElementType.FIELD; | |
import static java.lang.annotation.ElementType.METHOD; | |
import static java.lang.annotation.ElementType.PARAMETER; | |
import static java.lang.annotation.ElementType.TYPE; | |
import static java.lang.annotation.RetentionPolicy.RUNTIME; | |
/** That annotation for when you just don't have words. */ | |
@Retention(RUNTIME) @Target({METHOD, PARAMETER, FIELD, CONSTRUCTOR, TYPE}) | |
public @interface ಠ__ಠ { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment