mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
unused parameter: correctly ignore parameters used in overridden methods
when graph was build over not project scope (IDEA-180281)
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Test {
|
||||
public void doSmth(String str) {}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new Test().doSmth("");
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Main extends Test {
|
||||
public void doSmth(String str) {
|
||||
System.out.println(str);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user