The Trunk: Compression-nice.42.mcz

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

The Trunk: Compression-nice.42.mcz

commits-2
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.
  !


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Compression-nice.42.mcz

Nicolas Cellier
Sorry to push such insignificant change (it's waiting a more serious occasion in one of my images for 3 years),
but I wanted to trigger a build.squeak.org CI build...


2014-05-24 23:24 GMT+02:00 <[hidden email]>:
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.
  !





Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Compression-nice.42.mcz

Eliot Miranda-2



On Sat, May 24, 2014 at 2:27 PM, Nicolas Cellier <[hidden email]> wrote:
Sorry to push such insignificant change (it's waiting a more serious occasion in one of my images for 3 years),
but I wanted to trigger a build.squeak.org CI build...

nothing to apologize for.  (allSatisfy:) not.  Really?? :-)
 


2014-05-24 23:24 GMT+02:00 <[hidden email]>:

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









--
best,
Eliot