method

record_entity_expansion!

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: REXML::Document

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

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 36
        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.