From 1f3c01e0724dfebbe2dea24bb79e3cffdfe06f56 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Fri, 26 Jul 2024 15:38:36 +0200 Subject: [PATCH] Remove unused author IceMCVersionInfo is the only thing in the Pharo image still referencing the #author ivar. I propose to remove it so that we can remove the ivar from Monticello Formatting --- Iceberg/IceMCVersionInfo.class.st | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Iceberg/IceMCVersionInfo.class.st b/Iceberg/IceMCVersionInfo.class.st index 1f8f3a74c2..b5ca4fc5c4 100644 --- a/Iceberg/IceMCVersionInfo.class.st +++ b/Iceberg/IceMCVersionInfo.class.st @@ -55,21 +55,19 @@ IceMCVersionInfo >> fromCommit: aCommit package: aPackage [ "See #fromPackage:message:" commit := aCommit. package := aPackage. - + date := commit datetime asDate. time := commit datetime asTime. - + name := ('{1}-{2}.{3}' format: { package name. commit compatibleUsername. commit datetime asUnixTime }). - - id := self class uuidFromCommit: aCommit package: aPackage. - message := commit comment. - author := commit compatibleUsername + id := self class uuidFromCommit: aCommit package: aPackage. + message := commit comment ] { #category : 'initialization' }