Removing wierd marshalling thing

This commit is contained in:
Sam Lown 2010-11-23 02:55:29 +01:00
parent dd284fe045
commit 1f615ce568

View file

@ -58,7 +58,8 @@ module CouchRest::Model
if default.class == Proc
default.call
else
Marshal.load(Marshal.dump(default))
# Marshal.load(Marshal.dump(default)) # Removed as there are no failing tests and caused mutex errors
default
end
end