Remove unnecessary use of Object#send

This commit is contained in:
Yorick Peterse 2016-09-06 22:37:30 +02:00
parent a6cd19933d
commit 7a8220ae78
No known key found for this signature in database
GPG Key ID: EDD30D2BEB691AC9
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ module Oga
current = current.parent
end
send(:after_element, current, output) if current.is_a?(Element)
after_element(current, output) if current.is_a?(Element)
break if current == @start
end