aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/file_template.rb
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2019-03-14 14:27:35 -0700
committerJohn Hawthorn <john@hawthorn.email>2019-03-15 09:30:44 -0700
commit80c0ae7de867071ea6abee865364092783ca3d0a (patch)
treefd280d9aefedebaeb5ffbef6da4e055925a188f7 /actionview/lib/action_view/file_template.rb
parentd445ceb9b51ce87a306f331c643808312bd740e5 (diff)
downloadrails-80c0ae7de867071ea6abee865364092783ca3d0a.tar.gz
rails-80c0ae7de867071ea6abee865364092783ca3d0a.tar.bz2
rails-80c0ae7de867071ea6abee865364092783ca3d0a.zip
Remove updated_at from Templates
Diffstat (limited to 'actionview/lib/action_view/file_template.rb')
-rw-r--r--actionview/lib/action_view/file_template.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/file_template.rb b/actionview/lib/action_view/file_template.rb
index dea02176eb..d838078f94 100644
--- a/actionview/lib/action_view/file_template.rb
+++ b/actionview/lib/action_view/file_template.rb
@@ -22,11 +22,11 @@ module ActionView
# to ensure that references to the template object can be marshalled as well. This means forgoing
# the marshalling of the compiler mutex and instantiating that again on unmarshalling.
def marshal_dump # :nodoc:
- [ @identifier, @handler, @compiled, @locals, @virtual_path, @updated_at, @format, @variant ]
+ [ @identifier, @handler, @compiled, @locals, @virtual_path, @format, @variant ]
end
def marshal_load(array) # :nodoc:
- @identifier, @handler, @compiled, @locals, @virtual_path, @updated_at, @format, @variant = *array
+ @identifier, @handler, @compiled, @locals, @virtual_path, @format, @variant = *array
@compile_mutex = Mutex.new
end
end