class RuboCop::Cop::Style::RedundantCondition

def without_argument_parentheses_method?(node)

def without_argument_parentheses_method?(node)
  node.send_type? &&
    !node.arguments.empty? && !node.parenthesized? && !node.operator_method?
end