mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
cleanup
This commit is contained in:
+2
@@ -17,6 +17,7 @@ package com.intellij.codeInsight.completion
|
||||
|
||||
import com.intellij.JavaTestUtil
|
||||
import com.intellij.testFramework.LightProjectDescriptor
|
||||
import org.jetbrains.annotations.NotNull
|
||||
|
||||
public class Normal17CompletionTest extends LightFixtureCompletionTestCase {
|
||||
@Override
|
||||
@@ -24,6 +25,7 @@ public class Normal17CompletionTest extends LightFixtureCompletionTestCase {
|
||||
return JavaTestUtil.getRelativeJavaTestDataPath() + "/codeInsight/completion/normal/";
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
protected LightProjectDescriptor getProjectDescriptor() {
|
||||
return JAVA_LATEST
|
||||
|
||||
@@ -930,7 +930,8 @@ public class PsiBuilderImpl extends UserDataHolderBase implements PsiBuilder {
|
||||
}
|
||||
|
||||
public void nodeReplaced(@NotNull final ASTNode oldChild, @NotNull final LighterASTNode newChild) {
|
||||
myDelegate.nodeReplaced(oldChild, myConverter.convert((Node)newChild));
|
||||
ASTNode converted = myConverter.convert((Node)newChild);
|
||||
myDelegate.nodeReplaced(oldChild, converted);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user