Skip to content
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

Trivial dead code cleanup #550

Merged
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
8 changes: 4 additions & 4 deletions src/NewTools-Debugger/StDebugger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -467,10 +467,10 @@ StDebugger >> createSubclassResponsibility [
StDebugger >> currentContext [
"I answer the context on which an action should be executed.
This is either the selected context or if nothing is selected the interrupted context."
^ self selectedContext isNil
ifTrue: [ self interruptedContext ]
ifFalse: [ self selectedContext ]

^ self selectedContext
ifNil: [ self interruptedContext ]
ifNotNil: [ self selectedContext ]
]

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,3 @@ StRewriterRuleLoaderPresenter >> rhs [

^ rulesTableSelector rhs
]

{ #category : #actions }
StRewriterRuleLoaderPresenter >> setAllRulesAsTableItems [

rulesTableSelector refreshRules
]
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,6 @@ StSpotterCandidatesListProcessor >> actLogic: aBlockWithTwoArguments [
actBlock := aBlockWithTwoArguments
]

{ #category : #private }
StSpotterCandidatesListProcessor >> actOn: anObject for: aStep [

actBlock
ifNil: [ super actOn: anObject for: aStep ]
ifNotNil: [ actBlock cull: anObject cull: aStep ]
]

{ #category : #compatibility }
StSpotterCandidatesListProcessor >> allCandidates: aBlockWithOneArgument [
self items: aBlockWithOneArgument
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@ StSpotterPragmaBasedProcessor class >> settingsOn: aBuilder [
description: 'Number of total results per of category to show in Spotter'
]

{ #category : #public }
StSpotterPragmaBasedProcessor >> actOn: anObject for: aStep [
anObject spotterActDefault: aStep
]

{ #category : #public }
StSpotterPragmaBasedProcessor >> allFilteredCandidates [
^ allFilteredCandidates ifNil: [ allFilteredCandidates := OrderedCollection new ]
Expand Down