wrap with optional IDEA-122553

This commit is contained in:
Dmitry Batkovich
2016-03-25 13:10:26 +03:00
parent c06a613289
commit 6f49be7fcc
18 changed files with 367 additions and 5 deletions

View File

@@ -270,4 +270,9 @@ public abstract class QuickFixFactory {
@NotNull
public abstract IntentionAction createWrapLongWithMathToIntExactFix(@Nullable PsiType type, @NotNull PsiExpression expression);
@NotNull
public IntentionAction createWrapWithOptionalFix(@Nullable PsiType type, @NotNull PsiExpression expression) {
throw new UnsupportedOperationException();
};
}