Skip to content

Commit

Permalink
Merge pull request #854 from moosetechnology/flat-collect-as-set
Browse files Browse the repository at this point in the history
#flatCollectAsSet: should return a Set.
  • Loading branch information
ClotildeToullec authored Nov 8, 2024
2 parents cdc1dde + 2d23616 commit b508b8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Moose-Core/MooseAbstractGroup.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -455,8 +455,9 @@ MooseAbstractGroup >> flatCollect: aBlock [
]

{ #category : #enumerating }
MooseAbstractGroup >> flatCollectAsSet: aBlock [
^ (self entities flatCollectAsSet: aBlock) asMooseGroup
MooseAbstractGroup >> flatCollectAsSet: aBlock [

^ self entities flatCollectAsSet: aBlock
]

{ #category : #flattening }
Expand Down

0 comments on commit b508b8f

Please sign in to comment.