Skip to content

Commit

Permalink
Merge pull request #16069 from astares/16050-ArraydisplayString-shoul…
Browse files Browse the repository at this point in the history
…d-be-part-of-Kernel-and-not-an-override-from-NewTools

Array>>#displayString should be part of Kernel and not an override from NewTools
  • Loading branch information
guillep authored Feb 5, 2024
2 parents 41d450c + 3479d62 commit 8d3c207
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Collections-Sequenceable/Array.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,12 @@ Array >> copyWithDependent: newElement [
^ self copyWith: newElement
]

{ #category : 'displaying' }
Array >> displayString [

^ super displayString contractTo: 200
]

{ #category : 'converting' }
Array >> elementsExchangeIdentityWith: otherArray [
"This primitive performs a bulk mutation, causing all pointers to the elements of the
Expand Down

0 comments on commit 8d3c207

Please sign in to comment.