forgot to init super

which caused the fake_mem to be nil
This commit is contained in:
Torsten Ruger 2015-05-20 17:17:11 +03:00
parent 6eba363fb8
commit 2ec9ee90f9

View File

@ -24,6 +24,7 @@ module Parfait
class Layout < List class Layout < List
def initialize( object_class ) def initialize( object_class )
super()
@object_class = object_class @object_class = object_class
end end