Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 416643c commit e621f9fCopy full SHA for e621f9f
1 file changed
java/ql/test/query-tests/DoNotCallFinalize/Test.java
@@ -17,11 +17,11 @@ protected void finalize() throws Throwable {
17
18
// Overload of `finalize`
19
protected void finalize(String s) throws Throwable {
20
- System.out.println(s);
+ // ...
21
}
22
23
- // COMPLIANT: call to overload of `finalize`
24
void f2() throws Throwable {
+ // COMPLIANT: call to overload of `finalize`
25
this.finalize("overload");
26
27
0 commit comments