Files
Bas Leijdekkers e29649134e Don't report local variables named 'ignored' as unused (IDEA-171371)
GitOrigin-RevId: 40ad31afd1cb58fcdd9c48ba9970508ec052b562
2022-05-10 23:33:07 +00:00

86 lines
2.1 KiB
Java

class a extends Exception {
private <warning descr="Private constructor 'a(java.lang.String)' is never used">a</warning>(String s) {
super(s);
}
private <warning descr="Private constructor 'a()' is never used">a</warning>(){}
}
class TheOnlyCtr extends Exception {
private TheOnlyCtr(String s) {
super(s);
}
}
class s extends Exception {
private s(String s) {
super(s);
}
public s create() {
return new s("");
}
}
class PrivateClassTest {
private static class Test1 {
// Complains that this constructor is never used
private Test1 () {}
private Test1 (String s) {
System.out.println(s);
}
}
private static class Test2 extends Test1 {
// Complains that no default constructor is available
public Test2 () {
}
// Complains that the relevant constructor has private access
public Test2 (String s) {
super (s);
}
}
public static void main(String[] args) {
System.out.println(new Test2());
}
private void <warning descr="Private method 'f(boolean, int)' is never used">f</warning>(boolean b,
int <warning descr="Parameter 'param' is never used">param</warning>) {
if (b) {
f(b, param);
}
}
void localVariables() {
String <warning descr="Variable 's' is never used">s</warning> = "unused";
String ignored = "unused but ignored";
}
class IncrementedButNeverAccessed {
private int <warning descr="Private field 'ffff' is assigned but never accessed">ffff</warning>;
void foo(int p) {
if (p == 0) return;
ffff++;
}
}
class IncrementedAndPassed {
private int ffff;
void foo(int p) {
if (p == 0) return;
foo(ffff++);
}
}
class IncrementedAndRead{
private int ffff;
void foo(int <text_attr descr="Reassigned parameter">p</text_attr>) {
if (<text_attr descr="Reassigned parameter">p</text_attr> == 0) return;
<text_attr descr="Reassigned parameter">p</text_attr> = ffff++;
if (<text_attr descr="Reassigned parameter">p</text_attr> == 0) foo(<text_attr descr="Reassigned parameter">p</text_attr>);
}
}
}