The Trunk: Network-nice.90.mcz

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

The Trunk: Network-nice.90.mcz

commits-2
Nicolas Cellier uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-nice.90.mcz

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

Name: Network-nice.90
Author: nice
Time: 2 October 2010, 12:28:35.326 am
UUID: d5d3ccd1-bbe6-4f02-8ec6-d245e8f85466
Ancestors: Network-ar.89

Use #postCopy

=============== Diff against Network-ar.89 ===============

Item was removed:
- ----- Method: ServerDirectory>>copy (in category 'accessing') -----
- copy
-
- | new |
- new := self clone.
- new urlObject: urlObject copy.
- ^ new!

Item was added:
+ ----- Method: ServerDirectory>>postCopy (in category 'copying') -----
+ postCopy
+ super postCopy.
+ self urlObject: urlObject copy!