Java Code Examples for com.intellij.codeInsight.intention.IntentionAction#EMPTY_ARRAY
The following examples show how to use
com.intellij.codeInsight.intention.IntentionAction#EMPTY_ARRAY .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CheckstyleQualityToolMessageProcessor.java From idea-php-generics-plugin with MIT License | 4 votes |
@NotNull protected IntentionAction[] getQuickFix(XMLMessageHandler messageHandler) { return IntentionAction.EMPTY_ARRAY; }
Example 2
Source File: WebReferencesAnnotatorBase.java From consulo with Apache License 2.0 | 4 votes |
@Nonnull protected IntentionAction[] getQuickFixes() { return IntentionAction.EMPTY_ARRAY; }