Pattern: Use of ::
for method call
Issue: -
This rule checks for methods invoked via the ::
operator instead of the .
operator.
# bad
FileUtils::rmdir
# good
FileUtils.rmdir
Pattern: Use of ::
for method call
Issue: -
This rule checks for methods invoked via the ::
operator instead of the .
operator.
# bad
FileUtils::rmdir
# good
FileUtils.rmdir