# HG changeset patch # User Claus Gittinger # Date 1559941348 -7200 # Node ID 04559020c368a772b2992bf398ba919bbcd67e21 # Parent 9f0cb6b2661dc4ea926bb9d02b745e471b7f7740 #REFACTORING by cg class: HGRevset changed: #displayString diff -r 9f0cb6b2661d -r 04559020c368 mercurial/HGRevset.st --- a/mercurial/HGRevset.st Thu Apr 11 18:31:24 2019 +0200 +++ b/mercurial/HGRevset.st Fri Jun 07 23:02:28 2019 +0200 @@ -1,3 +1,5 @@ +"{ Encoding: utf8 }" + " stx:libscm - a new source code management library for Smalltalk/X Copyright (C) 2012-2015 Jan Vrany @@ -129,11 +131,12 @@ displayString comment notNil - ifTrue:[ ^ expression asText , ((' - ', comment) withColor: Color gray)] + ifTrue:[ ^ expression , ((' - ', comment) withColor: Color gray)] ifFalse:[ ^ expression ] "Created: / 24-03-2014 / 21:44:42 / Jan Vrany " "Modified: / 25-03-2014 / 01:27:32 / Jan Vrany " + "Modified: / 07-06-2019 / 22:58:33 / Claus Gittinger" ! ! !HGRevset methodsFor:'initialization'!