Skip to content

Commit

Permalink
FORGE-2645: CDINewAnnotationLiteralCommand should not extend or imple…
Browse files Browse the repository at this point in the history
…ment anything
  • Loading branch information
gastaldi committed May 5, 2016
1 parent 75780c9 commit be4b1c3
Showing 1 changed file with 12 additions and 0 deletions.
Expand Up @@ -124,6 +124,18 @@ public Iterable<String> getCompletionProposals(final UIContext context, final In
});
}

@Override
protected boolean supportsExtends()
{
return false;
}

@Override
protected boolean supportsImplements()
{
return false;
}

@Override
public JavaClassSource decorateSource(UIExecutionContext context, Project project, JavaClassSource annotationLiteral)
throws Exception
Expand Down

0 comments on commit be4b1c3

Please sign in to comment.