Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Jul 25, 2024
1 parent 5a7cbd4 commit 57811fd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion repository/OpenPonk-Core/OPStonDiagramSerializer.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ OPStonDiagramSerializer >> elementsByIdsOf: aModel [
| innerElements allElements |
innerElements := OPNavigatorAdapters new allChildrenFor: aModel.
allElements := innerElements asArray copyWith: aModel.
^ (allElements collect: [ :each | each uuid -> each ]) asDictionary
Notification signal: 'Elements: ' , allElements size asString.
^ (allElements withIndexCollect: [ :index :each |
Notification signal:
'E ' , index asString , ': ' , each uuid asString , '->'
, each asString.
each uuid -> each ]) asDictionary
]

{ #category : 'accessing' }
Expand Down

0 comments on commit 57811fd

Please sign in to comment.