A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.916.mcz
==================== Summary ====================
Name: Tools-ct.916
Author: ct
Time: 15 November 2019, 7:00:12.771005 pm
UUID: 05c08fc9-78c5-ea45-842e-dfc847d32551
Ancestors: Tools-mt.914
VersionsBrowser>>#selectMethod:: Compare not only timeStamp, but also source, as timeStamp is only minute-precise.
=============== Diff against Tools-mt.914 ===============
Item was changed:
----- Method: VersionsBrowser>>selectMethod: (in category 'menu') -----
selectMethod: aCompiledMethod
self toggleListIndex: (self changeList indexOf: (
+ self changeList detect: [:change |
+ change stamp = aCompiledMethod timeStamp and: [
+ change string = aCompiledMethod getSource asString]]))!
- self changeList detect: [:change | change stamp = aCompiledMethod timeStamp]))!