[squeak-dev] The Trunk: System-ct.1296.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jan 29 22:51:52 UTC 2022


Christoph Thiede uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ct.1296.mcz

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

Name: System-ct.1296
Author: ct
Time: 29 January 2022, 11:51:13.257085 pm
UUID: 711e138b-a97e-2440-a43d-77c823d87ee4
Ancestors: System-mt.1295

Accelerates "browse my changes" by caching source files. Treats Environments-ct.84.

=============== Diff against System-mt.1295 ===============

Item was changed:
  ----- Method: SystemNavigation>>browseMyChanges (in category 'browse') -----
  browseMyChanges
  	"Browse only the changes (in the changes file) by the current author."
  
  	"SystemNavigation default browseMyChanges"
  
+ 	^ CurrentReadOnlySourceFiles cacheDuring: [
+ 		self browseAllSelect: [ :method |
+ 			method fileIndex > 1 "only look at changes file"
+ 				and: [ method timeStamp beginsWith: Utilities authorInitials ]]]!
- 	^ self browseAllSelect: [ :method |
-        method fileIndex > 1 "only look at changes file"
-                and: [ method timeStamp beginsWith: Utilities authorInitials ]]!



More information about the Squeak-dev mailing list