The Trunk: Morphic-cwp.1057.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-cwp.1057.mcz

commits-2
Colin Putney uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-cwp.1057.mcz

==================== Summary ====================

Name: Morphic-cwp.1057
Author: cwp
Time: 7 December 2015, 9:30:19.787 pm
UUID: c8dfb49a-6bd4-486f-8a25-592c57330da7
Ancestors: Morphic-dtl.1056

Don't clobber the existing reference pool in PasteUpMorph>>referencePool

=============== Diff against Morphic-dtl.1056 ===============

Item was changed:
  ----- Method: PasteUpMorph>>referencePool (in category 'objects from disk') -----
  referencePool
+ ^ self
+ valueOfProperty: #References
+ ifAbsentPut: [OrderedCollection new]
+
+ !
- | pool |
- pool := OrderedCollection new.
- self setProperty: #References toValue: pool.
- ^ pool!