lib/rubocop/cop/lint/useless_comparison.rb in rubocop-0.35.1 vs lib/rubocop/cop/lint/useless_comparison.rb in rubocop-0.36.0

- old
+ new

@@ -1,18 +1,19 @@ # encoding: utf-8 +# frozen_string_literal: true module RuboCop module Cop module Lint # This cop checks for comparison of something with itself. # # @example # # x.top >= x.top class UselessComparison < Cop - MSG = 'Comparison of something with itself detected.' + MSG = 'Comparison of something with itself detected.'.freeze - OPS = %w(== === != < > <= >= <=>) + OPS = %w(== === != < > <= >= <=>).freeze def on_send(node) # lambda.() does not have a selector return unless node.loc.selector