lib/arstotzka/hash_reader.rb in arstotzka-1.4.2 vs lib/arstotzka/hash_reader.rb in arstotzka-1.4.3
- old
+ new
@@ -62,10 +62,10 @@
def hash
@hash ||= case json.to_s
when /^@@.*/
instance.class.class_variable_get(json)
when /^@.*/
- then instance.instance_variable_get(json)
+ instance.instance_variable_get(json)
else
instance.send(json)
end
end