The Trunk: Files-ul.169.mcz

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

The Trunk: Files-ul.169.mcz

commits-2
Levente Uzonyi uploaded a new version of Files to project The Trunk:
http://source.squeak.org/trunk/Files-ul.169.mcz

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

Name: Files-ul.169
Author: ul
Time: 24 April 2017, 1:01:59.851183 pm
UUID: 9593611d-fbbb-487f-a1c3-994e6347636e
Ancestors: Files-ul.168

- rewrote senders of #clone to use #shallowCopy

=============== Diff against Files-ul.168 ===============

Item was changed:
  ----- Method: FileStream class>>cs (in category 'file reader services') -----
  cs
 
+ ^'cs' shallowCopy!
- ^ 'cs' clone.
- !

Item was changed:
  ----- Method: FileStream class>>multiCs (in category 'file reader services') -----
  multiCs
 
+ ^'mcs' shallowCopy!
- ^ 'mcs' clone.
- !

Item was changed:
  ----- Method: FileStream class>>multiSt (in category 'file reader services') -----
  multiSt
 
+ ^'mst' shallowCopy!
- ^ 'mst' clone.
- !

Item was changed:
  ----- Method: FileStream class>>sources (in category 'file reader services') -----
  sources
 
+ ^'sources' shallowCopy!
- ^ 'sources' clone!

Item was changed:
  ----- Method: FileStream class>>st (in category 'file reader services') -----
  st
 
+ ^'st' shallowCopy!
- ^ 'st' clone.
- !