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

save another array allocation

This commit is contained in:
Aaron Patterson 2013-07-15 16:29:45 -07:00
parent d9a0587d3e
commit a929b4d4c5

View file

@ -291,7 +291,7 @@ module ActiveRecord
arg
}
self.order_values = args + self.order_values
self.order_values = args.concat self.order_values
self
end