Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 462 Bytes

UnusedPrivateMethodParameter.md

File metadata and controls

11 lines (6 loc) · 462 Bytes

Pattern: Unused private method parameter

Issue: -

Description

Checks for parameters to private methods that are not referenced within the method body. Note that the private modifier is not currently "respected" by Groovy code (i.e., Groovy can access private members within other classes).

Further Reading