Created
August 13, 2018 02:40
-
-
Save Earthcomputer/5641111ca6f43c69e92a6422d81f4554 to your computer and use it in GitHub Desktop.
Missing MCP class
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 mcp; | |
import javax.annotation.Nonnull; | |
import java.lang.annotation.Documented; | |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import javax.annotation.meta.TypeQualifierDefault; | |
@Documented | |
@Nonnull | |
@TypeQualifierDefault(ElementType.METHOD) | |
@Retention(RetentionPolicy.RUNTIME) | |
public @interface MethodsReturnNonnullByDefault {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment