LL072
Unused parameter
Object Pascal — Delphi & Free Pascal
Info
Maintainability
Unused parameters add noise and may indicate incomplete implementations
unused parameters add noise and may indicate incomplete implementations.
Why this severity
unused parameters add noise and may indicate incomplete implementations.
Known false positives
event handler signatures imposed by framework contracts.
Remediation example
procedure ProcessItem(const Item: TItem); begin SaveToDatabase(Item); // actually use the parameter end;