mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix DataFlowInspectionTest
This commit is contained in:
@@ -5,6 +5,6 @@ class Example {
|
||||
public static final String THIRD = FIRST + SECOND;
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(THIRD == "fd");
|
||||
System.out.println(<warning descr="Condition 'THIRD == \"fd\"' is always 'true'">THIRD == "fd"</warning>);
|
||||
}
|
||||
}
|
||||
@@ -95,7 +95,7 @@ public class DataFlowInspectionTest extends DataFlowInspectionTestCase {
|
||||
public void testCheckEnumConstantConstructor() { doTest(); }
|
||||
public void testCompareToEnumConstant() throws Throwable { doTest(); }
|
||||
public void testEqualsConstant() throws Throwable { doTest(); }
|
||||
public void testInternedStringConstants() throws Throwable { doTest(); }
|
||||
public void testInternedStringConstants() { doTest(); }
|
||||
public void testDontSaveTypeValue() { doTest(); }
|
||||
public void testFinalLoopVariableInstanceof() throws Throwable { doTest(); }
|
||||
public void testGreaterIsNotEquals() throws Throwable { doTest(); }
|
||||
|
||||
Reference in New Issue
Block a user