Minor: fix spelling warnings
This commit is contained in:
@@ -24,23 +24,23 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
import org.jetbrains.jet.plugin.project.TargetPlatform;
|
import org.jetbrains.jet.plugin.project.TargetPlatform;
|
||||||
|
|
||||||
public abstract class JetFixtureCompletionBaseTestCase extends LightCodeInsightFixtureTestCase {
|
public abstract class JetFixtureCompletionBaseTestCase extends LightCodeInsightFixtureTestCase {
|
||||||
private boolean autocompleteSetting;
|
private boolean autoCompleteSetting;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setUp() throws Exception {
|
protected void setUp() throws Exception {
|
||||||
super.setUp();
|
super.setUp();
|
||||||
|
|
||||||
autocompleteSetting = setAutocompleteSetting(false);
|
autoCompleteSetting = setAutoCompleteSetting(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void tearDown() throws Exception {
|
protected void tearDown() throws Exception {
|
||||||
setAutocompleteSetting(autocompleteSetting);
|
setAutoCompleteSetting(autoCompleteSetting);
|
||||||
|
|
||||||
super.tearDown();
|
super.tearDown();
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean setAutocompleteSetting(boolean value){
|
private boolean setAutoCompleteSetting(boolean value){
|
||||||
CodeInsightSettings settings = CodeInsightSettings.getInstance();
|
CodeInsightSettings settings = CodeInsightSettings.getInstance();
|
||||||
boolean oldValue;
|
boolean oldValue;
|
||||||
if (completionType() == CompletionType.SMART){
|
if (completionType() == CompletionType.SMART){
|
||||||
|
|||||||
Reference in New Issue
Block a user