Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Toplo-Serialization-Stash/BlElement.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ BlElement >> allSetterAndGettersForMyStashAllLocalTheme [
BlElement >> allSetterAndGettersForMyStashAllStamps [

<stashAccessors>
self allStamps isEmpty ifTrue: [ ^ { } ].
^ self toStyleStore stampIndex allProperties collect: [ :assoc | | setter getter |
self ensuredStampMap allPropertyNames isEmpty ifTrue: [ ^ { } ].
^ self ensuredStampMap allProperties collect: [ :assoc | | setter getter |
setter := [ :element | 'addStamp: <1p> withValue:' expandMacrosWith: assoc value name ].
getter := [ :element | assoc value value ].
setter -> getter
Expand Down