Reports unused default parameters.
def foo(a,
b = 2
) {}
If all
foo
calls will explicitly include argument for
b
then initializer for
b
will be highlighted as unused with option to remove it.