File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
activesupport/lib/active_support Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ class Store
149
149
150
150
# Create a new cache. The options will be passed to any write method calls except
151
151
# for :namespace which can be used to set the global namespace for the cache.
152
- def initialize ( options = nil )
152
+ def initialize ( options = nil )
153
153
@options = options ? options . dup : { }
154
154
end
155
155
@@ -538,7 +538,7 @@ class << self
538
538
# Create an entry with internal attributes set. This method is intended to be
539
539
# used by implementations that store cache entries in a native format instead
540
540
# of as serialized Ruby objects.
541
- def create ( raw_value , created_at , options = { } )
541
+ def create ( raw_value , created_at , options = { } )
542
542
entry = new ( nil )
543
543
entry . instance_variable_set ( :@value , raw_value )
544
544
entry . instance_variable_set ( :@created_at , created_at . to_f )
You can’t perform that action at this time.
0 commit comments