Revert testdata changes: Proper focus requests through the IDE focus subsystem. Part II.

This commit is contained in:
Anna.Kozlova
2017-02-21 21:25:26 +01:00
parent ff5c040e85
commit 968d14a5db
7 changed files with 8 additions and 30 deletions
@@ -211,6 +211,7 @@ interface ii {}
}
}
}
;
}
void cf8() {
@@ -5,6 +5,7 @@
C {
void foo() {}
}
;
abstract void foo();
}
@@ -5,6 +5,7 @@
C {
void foo() {}
}
;
abstract void foo();
}
@@ -6,5 +6,6 @@ class Test {
<selection>System.out.println(variable);</selection>
}
}
;
}
}
@@ -6,6 +6,7 @@ class Test {
newMethod(variable);
}
}
;
}
private <T> void newMethod(T variable) {
@@ -1,18 +1,3 @@
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.siyeh.igtest.controlflow.if_statement_with_identical_branches;
import java.util.Collection;
@@ -192,6 +177,8 @@ class NotADup {
void n(int i) {
<warning descr="'if' statement with identical branches">if</warning> (i == 0) {
System.out.println(((i)));
;
;
{
}
}
@@ -1,18 +1,3 @@
/*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.siyeh.igtest.junit;
import junit.framework.TestCase;
@@ -22,6 +7,7 @@ public class TestCaseWithConstructorInspection2 extends TestCase
public TestCaseWithConstructorInspection2()
{
super();
;
if (false) {
System.out.println();
}