# HG changeset patch # User Stefan Vogel # Date 1588083764 -7200 # Node ID 88a3329875ba7df135ae09ebe1c2d8fa40eec5a6 # Parent b784fc06a5eb2841aab822e268ef7ea62bbf6259 #REFACTORING by stefan class: MethodDictionary class removed: #newWithCapacity: moved to superclass diff -r b784fc06a5eb -r 88a3329875ba MethodDictionary.st --- a/MethodDictionary.st Tue Apr 28 16:22:26 2020 +0200 +++ b/MethodDictionary.st Tue Apr 28 16:22:44 2020 +0200 @@ -83,14 +83,6 @@ ^ self basicNew:(sz * 2) ! -newWithCapacity:size - "return a new empty Collection with capacity for n elements." - - ^ self new:size - - "Created: / 10-10-2017 / 17:51:14 / stefan" -! - withAll:aDictionary "create a MethodDictionary from another Dictionary"