From dc9f2a3c42a103c9bea2bf8bc69ba6de6cdd7c63 Mon Sep 17 00:00:00 2001 From: Pablo Tesone Date: Mon, 12 Jul 2021 16:09:00 +0200 Subject: [PATCH] Removing unused methods --- Iceberg/IceProxyMCVersionInfo.class.st | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/Iceberg/IceProxyMCVersionInfo.class.st b/Iceberg/IceProxyMCVersionInfo.class.st index 2c092d928f..3d9e864195 100644 --- a/Iceberg/IceProxyMCVersionInfo.class.st +++ b/Iceberg/IceProxyMCVersionInfo.class.st @@ -14,7 +14,7 @@ Class { #classVars : [ 'LastCommitFound' ], - #category : 'Iceberg-Adapters' + #category : #'Iceberg-Adapters' } { #category : #private } @@ -120,24 +120,6 @@ Please fetch from "{1}" and try again.' package: (IcePackage named: packageName repository: repo) ] -{ #category : #printing } -IceProxyMCVersionInfo >> gtDisplayOn: stream [ - "This offers a means to customize how the object is shown in the inspector" - ^ self printOn: stream -] - -{ #category : #printing } -IceProxyMCVersionInfo >> gtDisplayString [ - "This offers a means to customize how the object is shown in the inspector. - Do not override this method. Override gtDisplayOn: instead" - - | limitedString limit | - limit := 1000. - limitedString := String streamContents: [:s | self gtDisplayOn: s] limitedTo: limit. - limitedString size < limit ifTrue: [^ limitedString]. - ^ limitedString , ' ...' -] - { #category : #inspecting } IceProxyMCVersionInfo >> inspect [ "Create and schedule an Inspector in which the user can examine the receiver's variables."