The Trunk: Files-ul.57.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.57.mcz

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

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

Name: Files-ul.57
Author: ul
Time: 12 December 2009, 2:21:55 am
UUID: c7afd3fb-ebf4-ee43-bf02-c7ebd3c3593c
Ancestors: Files-nice.53

- replace sends of #ifNotNilDo: to #ifNotNil:, #ifNil:ifNotNilDo: to #ifNil:ifNotNil:, #ifNotNilDo:ifNil: to #ifNotNil:ifNil:

=============== Diff against Files-nice.53 ===============

Item was changed:
  ----- Method: RemoteString>>last (in category 'accessing') -----
  last
+ ^self string ifNotNil: [ :s | s last ]!
- ^self string ifNotNilDo: [ :s | s last ]!