#REFACTORING by exept
authorClaus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 10:56:34 +0100
changeset 4552 51e05f330692
parent 4551 fe3fbb93e8ce
child 4553 2cbcb4f949e6
#REFACTORING by exept class: AbstractSourceCodeManager class changed: #printClassRepositorySummaryForClass:on:
AbstractSourceCodeManager.st
--- a/AbstractSourceCodeManager.st	Wed Feb 19 20:58:01 2020 +0100
+++ b/AbstractSourceCodeManager.st	Sun Feb 23 10:56:34 2020 +0100
@@ -3029,7 +3029,8 @@
 
     log := self revisionLogOf:aClass.
     log isNil ifTrue:[
-        aStream nextPutLine:('Could not get the repository log from %1' bindWith:(self repositoryName ? '<no repository name>')).
+        aStream nextPutLine:'Could not get the repository log from %1' 
+                with:(self repositoryName ? '<no repository name>').
         ^ self.
     ].   
 
@@ -3043,8 +3044,8 @@
 
     youngestRev := revisions first.
     oldestRev := revisions last.
-    aStream nextPutLine:(' by %1 at %2' bindWith:(youngestRev author ? '?') with:(youngestRev timestamp)).
-    aStream nextPutLine:('First Checkin: by %1 at %2' bindWith:(oldestRev author ? '?') with:(oldestRev timestamp)).
+    aStream nextPutLine:' by %1 at %2' with:(youngestRev author ? '?') with:(youngestRev timestamp).
+    aStream nextPutLine:'First Checkin: by %1 at %2' with:(oldestRev author ? '?') with:(oldestRev timestamp).
 !
 
 removeContainer: container inModule: module directory: directory