move from new_object to normal new

This commit is contained in:
Torsten Ruger
2015-07-20 13:01:15 +03:00
parent 08e1852e5f
commit 2c1c38716b
13 changed files with 33 additions and 21 deletions

View File

@ -7,8 +7,8 @@ module Parfait
# internally we store keys and values in lists, which means this does **not** scale well
def initialize
super()
@keys = List.new_object()
@values = List.new_object()
@keys = List.new()
@values = List.new()
end
# return all values as a list