Java: update comments in tests

This commit is contained in:
Jami Cogswell
2025-04-01 15:48:52 -04:00
parent 416643ce39
commit e621f9fd49

View File

@@ -17,11 +17,11 @@ public class Test {
// Overload of `finalize`
protected void finalize(String s) throws Throwable {
System.out.println(s);
// ...
}
// COMPLIANT: call to overload of `finalize`
void f2() throws Throwable {
// COMPLIANT: call to overload of `finalize`
this.finalize("overload");
}