mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moving tests to CE
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems>
|
||||
|
||||
<problem>
|
||||
<file>Test.java</file>
|
||||
<line>3</line>
|
||||
<description>Variable is assigned to itself</description>
|
||||
</problem>
|
||||
|
||||
</problems>
|
||||
@@ -0,0 +1,5 @@
|
||||
public class Test {
|
||||
public static void main(String[] args) {
|
||||
args = args;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
@@ -0,0 +1,11 @@
|
||||
public class Test {
|
||||
public static void main(String[] args) {
|
||||
//noinspection SillyAssignment
|
||||
args = args;
|
||||
int i = 0;
|
||||
if (i == 0) {
|
||||
|
||||
} else //noinspection SillyAssignment
|
||||
i == i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user