[squeak-dev] The Trunk: Compression-nice.42.mcz

commits at source.squeak.org commits at source.squeak.org
Sat May 24 21:24:25 UTC 2014


Nicolas Cellier uploaded a new version of Compression to project The Trunk:
http://source.squeak.org/trunk/Compression-nice.42.mcz

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

Name: Compression-nice.42
Author: nice
Time: 24 May 2014, 11:24:05.218 pm
UUID: c9c66aed-c87d-4c7f-8518-fda5842f46c2
Ancestors: Compression-eem.41

Cosmetic refactoring:
(aCollection anySatisfy: aBlock) not -> (aCollection noneSatisfy: aBloc)

=============== Diff against Compression-eem.41 ===============

Item was changed:
  ----- Method: Archive>>canWriteToFileNamed: (in category 'archive operations') -----
  canWriteToFileNamed: aFileName
  	"Catch attempts to overwrite existing zip file"
+ 	^members noneSatisfy: [ :ea | ea usesFileNamed: aFileName ].
- 	^(members anySatisfy: [ :ea | ea usesFileNamed: aFileName ]) not.
  !



More information about the Squeak-dev mailing list