We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 881ae64 commit 1f50ae8Copy full SHA for 1f50ae8
java/ql/test/query-tests/EmptyMethod/EmptyMethod.expected
@@ -1 +1,3 @@
1
| Test.java:13:15:13:16 | f2 | Empty method found. |
2
+| Test.java:27:17:27:17 | f | Empty method found. |
3
+| Test.java:32:18:32:23 | method | Empty method found. |
java/ql/test/query-tests/EmptyMethod/Test.java
@@ -21,4 +21,15 @@ public abstract class TestInner {
21
public abstract void f();
22
}
23
24
+ public class Derived extends TestInner {
25
+
26
+ @Override
27
+ public void f() { } // $ Alert
28
+ }
29
30
+ public interface TestInterface {
31
32
+ default void method() { } // $ Alert
33
34
35
0 commit comments