mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Revert testdata changes: Proper focus requests through the IDE focus subsystem. Part II.
This commit is contained in:
+1
@@ -211,6 +211,7 @@ interface ii {}
|
||||
}
|
||||
}
|
||||
}
|
||||
;
|
||||
}
|
||||
|
||||
void cf8() {
|
||||
|
||||
+1
@@ -5,6 +5,7 @@
|
||||
C {
|
||||
void foo() {}
|
||||
}
|
||||
;
|
||||
|
||||
abstract void foo();
|
||||
}
|
||||
|
||||
+1
@@ -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) {
|
||||
|
||||
+2
-15
@@ -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
-15
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user