Skip to content

Update call to a deprecated class #16671

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Refactoring-UI/RBOverrideMethod.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RBOverrideMethod >> browse [
cancelLabel: 'No, forget it';
label: ' The newly named method could override existing methods.\n
Do you want to browse superclasses method of ', refactoring newSelector;
onAccept: [ MessageBrowser browseImplementorsOf: refactoring newSelector];
onAccept: [ StMessageBrowser browseImplementorsOf: refactoring newSelector];
onCancel: [ ];
openDialog
]
Expand Down
2 changes: 1 addition & 1 deletion src/Refactoring-UI/ReRemoveMethodDriver.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ReRemoveMethodDriver >> breakingChoices [
{ #category : 'execution' }
ReRemoveMethodDriver >> browseSenders [

StMessageBrowserPresenter
StMessageBrowser
browse: (haveNoSenders violators collect: [ :each | each value methodClass realClass >> each value selector ])
asSendersOf: (refactoring allSelectors )
"this does not work for multiple selectors remove."
Expand Down
4 changes: 1 addition & 3 deletions src/Refactoring-UI/ReRemoveSharedVariablesDriver.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ ReRemoveSharedVariablesDriver >> breakingChoices [
{ #category : 'execution' }
ReRemoveSharedVariablesDriver >> browseSharedVariableReferences [

StMessageBrowserPresenter
browse: refactoring violators

StMessageBrowser browse: refactoring violators
]

{ #category : 'execution' }
Expand Down