Reports calls with no arguments to method that has exactly one parameter. This is equivalent to call with null, and that behavior is often confusing and unintended.
Example:
    def foo(String s){}

    foo()
Will be executed as following:
    def foo(String s){}

    foo(null)