fix the plus method that sneaked into arm

This commit is contained in:
Torsten Ruger
2015-08-06 18:55:08 +03:00
parent 9ebe6eb5b7
commit 4afd7f78ca
3 changed files with 11 additions and 3 deletions

View File

@ -38,7 +38,7 @@ module Virtual
def remove_remaining
@gonners.each do |method|
next if(method.name == :plus)
method.for_class.remove_instance_method method
method.for_class.remove_instance_method method.name
end
end
end