method

record_entity_expansion!

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: REXML::Document
record_entity_expansion!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/core_ext/rexml.rb, line 27
      def record_entity_expansion!
        @number_of_expansions ||= 0
        @number_of_expansions += 1
        if @number_of_expansions > @@entity_expansion_limit
          raise "Number of entity expansions exceeded, processing aborted."
        end
      end
Register or log in to add new notes.