Skip to content

Commit

Permalink
Fixed inspector extension for context fingerprint
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt committed Jul 19, 2024
1 parent 1306586 commit 113886d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/IllimaniProfiler/AllocationSiteInfoModel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ AllocationSiteInfoModel >> inspectorExtensionContextFingerprint: aBuilder [

<inspectorPresentationOrder: 2 title: 'Context Fingerprint'>
^ aBuilder newList
items: contextFingerprint;
"filter nil values"
items: (contextFingerprint reject: #isNil);
display: [ :aMethod | "we ask the method because of the compiled blocks" aMethod method name ];
yourself
]
Expand Down

0 comments on commit 113886d

Please sign in to comment.