method

duplicates?

duplicates?(other)
public

No documentation available.

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