From 3479d62e53d0b0cb5fca19d53d1c461d51f76ee0 Mon Sep 17 00:00:00 2001 From: Torsten Bergmann Date: Mon, 29 Jan 2024 21:35:53 +0100 Subject: [PATCH] Array>>#displayString should be part of Kernel and not an override from NewTools Fix #16050 --- src/Collections-Sequenceable/Array.class.st | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Collections-Sequenceable/Array.class.st b/src/Collections-Sequenceable/Array.class.st index 286e459c292..f57a7d44d54 100644 --- a/src/Collections-Sequenceable/Array.class.st +++ b/src/Collections-Sequenceable/Array.class.st @@ -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