1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

oops, missed a uniq

This commit is contained in:
Aaron Patterson 2010-09-29 11:53:34 -07:00
parent a5f8f59081
commit 1d9a219307

View file

@ -65,7 +65,7 @@ module AbstractController
# Except for public instance methods of Base and its ancestors
internal_methods +
# Be sure to include shadowed public instance methods of this class
public_instance_methods(false)).map { |x| x.to_s } -
public_instance_methods(false)).uniq.map { |x| x.to_s } -
# And always exclude explicitly hidden actions
hidden_actions.to_a