Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.863.mcz==================== Summary ====================
Name: Collections-mt.863
Author: mt
Time: 19 November 2019, 11:21:39.854265 am
UUID: 217307c8-b585-da43-9494-9a0db5e31144
Ancestors: Collections-mt.862, Collections-ct.861
Merges Collections-ct.861.
=============== Diff against Collections-mt.862 ===============
Item was added:
+ ----- Method: TextIndent class>>scanCharacter (in category 'fileIn/Out') -----
+ scanCharacter
+ "The character used to identify a subclass of TextAttribute for filein and fileout"
+ ^ $I!
Item was added:
+ ----- Method: TextIndent class>>scanFrom: (in category 'fileIn/Out') -----
+ scanFrom: aStream
+
+ ^ self amount: (Integer readFrom: aStream)!
Item was added:
+ ----- Method: TextIndent>>writeScanOn: (in category 'fileIn/fileOut') -----
+ writeScanOn: aStream
+
+ aStream
+ nextPut: self class scanCharacter;
+ store: self amount.!