Java: update qhelp implementation notes for clarity

This commit is contained in:
Jami Cogswell
2025-04-01 16:24:13 -04:00
parent c4b8396333
commit 1a2c34dd28

View File

@@ -48,7 +48,8 @@ void main() {
# Implementation Notes
This rule is focused on the use of existing `finalize()` invocations rather than attempts to write a custom implementation.
This rule ignores `super.finalize()` calls that occur within `finalize()` overrides since calling the superclass finalizer is required when overriding `finalize()`. Also, although overriding `finalize()` is not recommended, this rule only alerts on direct calls to `finalize()` and does not alert on overrides of `finalize()`.
## References