Skip to content

Commit 10ed080

Browse files
committed
Fix deprecated call
1 parent 8dc63cf commit 10ed080

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

Moose-Blueprint-Models/CBClassBlueprint.class.st

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,9 @@ CBClassBlueprint >> connectInvocations [
177177

178178
{ #category : 'building' }
179179
CBClassBlueprint >> connectOutgoingAccesses [
180-
181-
accessors do: [ :accessor |
182-
| att |
183-
att := (accessor entity queryOutgoingAccesses collect: #target) asSet.
184-
att ifNotEmpty: [
185-
self connectSource: accessor entity withAll: att ] ]
180+
181+
accessors do: [ :accessor |
182+
((accessor entity queryOutgoing: FamixTAccess) collect: #target) asSet ifNotEmpty: [ :att | self connectSource: accessor entity withAll: att ] ]
186183
]
187184

188185
{ #category : 'building' }

0 commit comments

Comments
 (0)