#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Sun, 12 May 2019 13:22:20 +0200
changeset 4422 ada6bcb9edc5
parent 4421 d992c2e999b4
child 4423 d9211217535a
#BUGFIX by cg class: CVSSourceCodeManager class changed: #readRevisionLogEntryFromStream: class: CVSSourceCodeManager::CVSVersionInfo changed: #changedLinesInfo
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Sun May 12 13:22:00 2019 +0200
+++ b/CVSSourceCodeManager.st	Sun May 12 13:22:20 2019 +0200
@@ -1354,7 +1354,7 @@
             #('date:'   #date
               'author:' #author 
               'state:'  #state 
-              'lines:'  #changedLinesInfo
+              'lines:'  #numberOfChangedLines
              ) pairWiseDo:[:word :key |
                 s := subEntry restAfter:word withoutSeparators:true.
                 s notNil ifTrue:[
@@ -1365,8 +1365,8 @@
         ].
 
         "first revision does not have a 'lines:' entry"
-        (record at:#changedLinesInfo ifAbsent:[nil]) isNil ifTrue:[
-            record at:#changedLinesInfo put:''
+        (record at:#numberOfChangedLines ifAbsent:[nil]) isNil ifTrue:[
+            record at:#numberOfChangedLines put:''
         ].
 
         s := nil.
@@ -1392,6 +1392,7 @@
 
     "Modified: / 20-09-2017 / 20:16:45 / stefan"
     "Modified: / 12-03-2019 / 10:59:24 / Stefan Vogel"
+    "Modified: / 12-05-2019 / 13:01:52 / Claus Gittinger"
 !
 
 releaseAndRemove:tempdir module:moduleDir outputTo:outputFilename
@@ -6074,7 +6075,9 @@
 !CVSSourceCodeManager::CVSVersionInfo methodsFor:'accessing'!
 
 changedLinesInfo
-    ^ changedLinesInfo
+    ^ changedLinesInfo ? ''
+
+    "Modified: / 12-05-2019 / 13:03:41 / Claus Gittinger"
 !
 
 changedLinesInfo:aString