Method: REXML::Validation::Event#==

Defined in:
lib/rexml/validation/validation.rb

#==(other) ⇒ Object



130
131
132
133
# File 'lib/rexml/validation/validation.rb', line 130

def ==( other )
  return false unless other.kind_of? Event
  @event_type == other.event_type and @event_arg == other.event_arg
end