Skip to content

Instantly share code, notes, and snippets.

@Earthcomputer
Created August 13, 2018 02:40
Show Gist options
  • Save Earthcomputer/5641111ca6f43c69e92a6422d81f4554 to your computer and use it in GitHub Desktop.
Save Earthcomputer/5641111ca6f43c69e92a6422d81f4554 to your computer and use it in GitHub Desktop.
Missing MCP class
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