We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dc63cf commit 10ed080Copy full SHA for 10ed080
Moose-Blueprint-Models/CBClassBlueprint.class.st
@@ -177,12 +177,9 @@ CBClassBlueprint >> connectInvocations [
177
178
{ #category : 'building' }
179
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 ] ]
+
+ accessors do: [ :accessor |
+ ((accessor entity queryOutgoing: FamixTAccess) collect: #target) asSet ifNotEmpty: [ :att | self connectSource: accessor entity withAll: att ] ]
186
]
187
188
0 commit comments