Skip to content

Commit efe1802

Browse files
authored
Merge pull request #19 from OpenSmock/devForToploUpdate
Fix regression due to Toplo modifcation
2 parents 0e4e244 + ca04b2c commit efe1802

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Toplo-Serialization-Stash/BlElement.extension.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ BlElement >> allSetterAndGettersForMyStashAllLocalTheme [
1212
BlElement >> allSetterAndGettersForMyStashAllStamps [
1313

1414
<stashAccessors>
15-
self allStamps isEmpty ifTrue: [ ^ { } ].
16-
^ self toStyleStore stampIndex allProperties collect: [ :assoc | | setter getter |
15+
self ensuredStampMap allPropertyNames isEmpty ifTrue: [ ^ { } ].
16+
^ self ensuredStampMap allProperties collect: [ :assoc | | setter getter |
1717
setter := [ :element | 'addStamp: <1p> withValue:' expandMacrosWith: assoc value name ].
1818
getter := [ :element | assoc value value ].
1919
setter -> getter

0 commit comments

Comments
 (0)