2009/12/30 Stéphane Ducasse <stephane.ducasse@inria.fr>:
hi igor
up to 11125 it works well and after when I was trying to do the last two cs using MC
in 11125 I get
new     ^ self trailerClass basicNew initialize trailerClass     ^ TrailerClass ifNil: [ OldMethodTrailer ]
in 11126 when I try to load these packages.
I get  CompiledMethodTrailer new             does understand trailerClass
You seem stepped on same trap as Andreas did. :) MC minds own method removal order, and removes #trailerClass before #new, which then leads to DNU. Split cleanup into two stages: - in first update, remove just #new - in second , remove #trailerClass and the rest of stuff so, MC will have no chances to interfere with removal order. -- Best regards, Igor Stasenko AKA sig.