aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2014-12-28 16:05:53 +0900
committerRyuta Kamizono <kamipo@gmail.com>2014-12-28 16:05:53 +0900
commit5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb (patch)
tree4a1879061e91847cd6e8631f5a7b2732af9876b4 /activerecord
parent3ba552fb2900ce67409af57f3c7a1f9fda4c10d3 (diff)
downloadrails-5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb.tar.gz
rails-5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb.tar.bz2
rails-5f1a9bbec0fad2a9c93ef5bbc6cabd4067f4e2fb.zip
Fix warning: `*' interpreted as argument prefix
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/timestamp.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/timestamp.rb b/activerecord/lib/active_record/timestamp.rb
index 4d1d7310af..20e4235788 100644
--- a/activerecord/lib/active_record/timestamp.rb
+++ b/activerecord/lib/active_record/timestamp.rb
@@ -67,7 +67,7 @@ module ActiveRecord
write_attribute(column, current_time)
end
end
- super *args
+ super(*args)
end
def should_record_timestamps?