Skip to content

Commit

Permalink
Fixing String
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Mar 31, 2021
1 parent d066d68 commit d81c862
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/Collections-Strings/String.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -1050,11 +1050,9 @@ String >> deepCopy [
^self shallowCopy
]
{ #category : #displaying }
{ #category : #printing }
String >> displayStringOn: aStream [
aStream nextPutAll: self
]
{ #category : #printing }
Expand Down
2 changes: 1 addition & 1 deletion src/GT-InspectorExtensions-Core/KMCategory.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Extension { #name : #KMCategory }

{ #category : #'*GT-InspectorExtensions-Core' }
KMCategory >> displayStringOn: stream [
super displayString: stream.
super displayStringOn: stream.
^ stream
nextPut: $(;
nextPutAll: self name asString;
Expand Down
5 changes: 0 additions & 5 deletions src/GT-InspectorExtensions-Core/String.extension.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
Extension { #name : #String }

{ #category : #'*GT-InspectorExtensions-Core' }
String >> displayStringOn: aStream [
self printOn: aStream.
]

{ #category : #'*GT-InspectorExtensions-Core' }
String >> gtDisplayOn: aStream [
self printOn: aStream.
Expand Down

0 comments on commit d81c862

Please sign in to comment.