method

duplicates?

duplicates?(other)
public

No documentation available.

# File activesupport/lib/active_support/callbacks.rb, line 390
      def duplicates?(other)
        case @filter
        when Symbol, String
          matches?(other.kind, other.filter)
        else
          false
        end
      end