pharo
pharo copied to clipboard
pull up refactoring broken
Trying to pull a class method on its super class, I get a DNU :(
ps: my superclass had already the same method
Your bug got fixed (but the fix introduced an endless loop in PullUp)
It should be
defaultSelectDialog
^ self class defaultSelectDialog
title: 'There are potential breaking changes!';
label: self labelBasedOnBreakingChanges;
items: self breakingChoices;
display: [ :each | each description ];
displayIcon: [ :each | self iconNamed: each systemIconName ];
openModal
and not
defaultSelectDialog
^ self defaultSelectDialog
title: 'There are potential breaking changes!';
label: self labelBasedOnBreakingChanges;
items: self breakingChoices;
display: [ :each | each description ];
displayIcon: [ :each | self iconNamed: each systemIconName ];
openModal
With this change your bug goes away so I will close the issue.