# File lib/active_merchant/billing/gateways/merchant_ware.rb, line 99
      def credit(money, identification, options = {})
        if identification.is_a?(String)          
          deprecated CREDIT_DEPRECATION_MESSAGE
          refund(money, identification, options)
        else
          perform_credit(money, identification, options)
        end
      end