The Trunk: ST80-nice.229.mcz

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

The Trunk: ST80-nice.229.mcz

commits-2
Nicolas Cellier uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-nice.229.mcz

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

Name: ST80-nice.229
Author: nice
Time: 10 June 2017, 5:56:36.105684 pm
UUID: a851baa5-4a34-4857-8bff-8f9dfccc7dfe
Ancestors: ST80-eem.228

Massively replace ifNotNilDo: by ifNotNil:
We don't need two different selectors to do a single thing.

=============== Diff against ST80-eem.228 ===============

Item was changed:
  ----- Method: StandardSystemView class>>doCacheBits (in category 'class initialization') -----
  doCacheBits
  "StandardSystemView doCacheBits - Enable fast window repaint feature"
  CacheBits := true.
+ ScheduledControllers ifNotNil: [:sc | sc unCacheWindows; restore]!
- ScheduledControllers ifNotNilDo: [:sc | sc unCacheWindows; restore]!