# File lib/sinatra/respond_to.rb, line 154
      def self.included(klass)
        klass.class_eval do
          alias :content_type_without_save :content_type
          def content_type(*args)
            @_format = args.first.to_sym
            content_type_without_save *args
          end
        end
      end