Minor: fix compilation warning
This commit is contained in:
+1
-1
@@ -93,7 +93,7 @@ public abstract class JetStubElementType<StubT extends StubElement, PsiT extends
|
|||||||
@Override
|
@Override
|
||||||
public boolean shouldCreateStub(ASTNode node) {
|
public boolean shouldCreateStub(ASTNode node) {
|
||||||
PsiElement psi = node.getPsi();
|
PsiElement psi = node.getPsi();
|
||||||
if (ArrayUtil.contains(psi.getClass(), ALWAYS_CREATE_STUB_FOR)) {
|
if (ArrayUtil.contains(psi.getClass(), (Object[]) ALWAYS_CREATE_STUB_FOR)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if (psi instanceof JetDeclaration) {
|
if (psi instanceof JetDeclaration) {
|
||||||
|
|||||||
Reference in New Issue
Block a user