<div dir="ltr">This one removes the send to #asArray, it wasn't necessary.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Dec 17, 2019 at 4:14 PM <<a href="mailto:commits@source.squeak.org">commits@source.squeak.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Chris Muller uploaded a new version of Tools to project The Inbox:<br>
<a href="http://source.squeak.org/inbox/Tools-cmm.927.mcz" rel="noreferrer" target="_blank">http://source.squeak.org/inbox/Tools-cmm.927.mcz</a><br>
<br>
==================== Summary ====================<br>
<br>
Name: Tools-cmm.927<br>
Author: cmm<br>
Time: 17 December 2019, 4:14:11.72576 pm<br>
UUID: 02595c45-7a56-4481-9038-3bca791d316e<br>
Ancestors: Tools-mt.925<br>
<br>
- Fix debugging of the initialization of Dictionary's.<br>
- Fix the order of entries rendered by inspectors of OrderedDictionary's.<br>
<br>
=============== Diff against Tools-mt.925 ===============<br>
<br>
Item was changed:<br>
  ----- Method: DictionaryInspector>>calculateKeyArray (in category 'selecting') -----<br>
  calculateKeyArray<br>
        "Recalculate the KeyArray from the object being inspected"<br>
+       keyArray := object isInitialized<br>
+               ifTrue: [ object keysInOrder ]<br>
+               ifFalse: [ Array empty ].<br>
+       selectionIndex := 0!<br>
- <br>
-       keyArray := object keysSortedSafely asArray.<br>
-       selectionIndex := 0.<br>
- !<br>
<br>
Item was added:<br>
+ ----- Method: HashedCollection>>isInitialized (in category '*Tools-Debugger') -----<br>
+ isInitialized<br>
+       ^ array notNil and: [ tally notNil ]!<br>
<br>
<br>
</blockquote></div>