Java: update qhelp implementation notes to say 'method declarations'

This commit is contained in:
Jami Cogswell
2025-04-03 16:05:23 -04:00
parent 0380279c39
commit fc21abc7e4

View File

@@ -48,7 +48,7 @@ void main() {
# Implementation Notes
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 method overrides of `finalize()`.
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 method declarations overriding `finalize()`.
## References