File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -290,15 +290,21 @@ MooseAbstractGroup >> count: aBlock [
290
290
]
291
291
292
292
{ #category : #enumerating }
293
- MooseAbstractGroup >> detect: aBlock [
294
-
295
- ^ self entities detect: aBlock
293
+ MooseAbstractGroup >> detect: aBlock [
294
+
295
+ ^ self entities detect: aBlock
296
296
]
297
297
298
298
{ #category : #enumerating }
299
- MooseAbstractGroup >> detect: aBlock ifNone: anotherBlock [
300
-
301
- ^ self entities detect: aBlock ifNone: anotherBlock
299
+ MooseAbstractGroup >> detect: aBlock ifFound: anotherBlock [
300
+
301
+ ^ self entities detect: aBlock ifFound: anotherBlock
302
+ ]
303
+
304
+ { #category : #enumerating }
305
+ MooseAbstractGroup >> detect: aBlock ifNone: anotherBlock [
306
+
307
+ ^ self entities detect: aBlock ifNone: anotherBlock
302
308
]
303
309
304
310
{ #category : #enumerating }
You can’t perform that action at this time.
0 commit comments