Skip to content

Commit 8a75483

Browse files
authored
Merge pull request #36 from moosetechnology/fix-access
Improve way of getting accessed variables
2 parents 10ed080 + ff23cdc commit 8a75483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Moose-Blueprint-Models/CBClassBlueprint.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ CBClassBlueprint >> connectInvocations [
179179
CBClassBlueprint >> connectOutgoingAccesses [
180180

181181
accessors do: [ :accessor |
182-
((accessor entity queryOutgoing: FamixTAccess) collect: #target) asSet ifNotEmpty: [ :att | self connectSource: accessor entity withAll: att ] ]
182+
(accessor entity query outgoing objects dependenciesOfType: FamixTAccess) asSet ifNotEmpty: [ :att | self connectSource: accessor entity withAll: att ] ]
183183
]
184184

185185
{ #category : 'building' }

0 commit comments

Comments
 (0)