# File lib/dm-validations/support/object.rb, line 7
  def try_call(*args)
    if self.respond_to?(:call)
      self.call(*args)
    else
      self
    end
  end