Skip to content

Commit

Permalink
Remove unused author
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jecisc committed Jul 26, 2024
1 parent 1081fb5 commit 1f3c01e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Iceberg/IceMCVersionInfo.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -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' }
Expand Down

0 comments on commit 1f3c01e

Please sign in to comment.