Skip to content

Commit

Permalink
Merge pull request #643 from moosetechnology/asCollection-removal
Browse files Browse the repository at this point in the history
removed one asCollection
  • Loading branch information
ClotildeToullec authored Nov 23, 2023
2 parents b639f2a + 392137e commit 179e58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Moose-Query/MQNavigationQuery.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ MQNavigationQuery >> queryFor: anEntity [
(anEntity perform: (selectors at: index))
ifNotNil: [ :children |
| coll |
1 to: (coll := children asCollection) size do: [ :i | self queryFor: (coll at: i) ] ] ]
1 to: (coll := OrderedCollection withAll: children) size do: [ :i | self queryFor: (coll at: i) ] ] ]
]

{ #category : #execution }
Expand Down

0 comments on commit 179e58b

Please sign in to comment.