[squeak-dev] The Trunk: System-ar.373.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 9 15:55:30 UTC 2010


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]!




More information about the Squeak-dev mailing list