Skip to content

Commit

Permalink
fix one method
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Jun 20, 2019
1 parent b8e47da commit ce11b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/System-Support/SystemNavigation.class.st
Expand Up @@ -121,7 +121,7 @@ SystemNavigation >> allImplementorsOf: aSelector [
aCollection := OrderedCollection new.
self allBehaviorsDo: [:class |
(class includesSelector: aSelector)
ifTrue: [aCollection add: (class>>self) methodReference]].
ifTrue: [aCollection add: (class>>aSelector) methodReference]].
^ aCollection
]

Expand Down

0 comments on commit ce11b03

Please sign in to comment.