The Trunk: System-ar.373.mcz

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

The Trunk: System-ar.373.mcz

commits-2
Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.373.mcz

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

Name: System-ar.373
Author: ar
Time: 9 September 2010, 8:54:21.936 am
UUID: 13f6b8bc-f153-104c-a7b6-c504ad742018
Ancestors: System-ar.372

Add FileSevices class>>suffixOf:

=============== Diff against System-ar.372 ===============

Item was added:
+ ----- Method: FileServices class>>suffixOf: (in category 'accessing') -----
+ suffixOf: aName
+ "Answer the file extension of the given file"
+ ^ aName
+ ifNil:
+ ['']
+ ifNotNil:
+ [(FileDirectory extensionFor: aName) asLowercase]!