[squeak-dev] The Trunk: Tools-mt.909.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 15 11:57:38 UTC 2019


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.909.mcz

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

Name: Tools-mt.909
Author: mt
Time: 15 October 2019, 1:57:36.180992 pm
UUID: be9090ad-70ef-f143-8a8e-8c7a509af71a
Ancestors: Tools-mt.908

Models must never provide "nil" as the list to the view.

=============== Diff against Tools-mt.908 ===============

Item was changed:
  ----- Method: SelectorBrowser>>classList (in category 'class list') -----
  classList
+ 	^ classList ifNil: [#()]!
- 	^ classList!

Item was changed:
  ----- Method: SelectorBrowser>>messageList (in category 'message list') -----
  messageList
  	"Find all the selectors containing what the user typed in."
  
+ 	^ selectorList ifNil: [#()]!
- 	^ selectorList!



More information about the Squeak-dev mailing list