#REFACTORING by cg cvs_MAIN expecco_2_10_0 expecco_2_10_0_41 expecco_2_11_0 expecco_2_11_1
authorClaus Gittinger <cg@exept.de>
Fri, 18 Nov 2016 18:07:21 +0100
branchcvs_MAIN
changeset 716 c250ea56603a
parent 715 21c8c73bed15
child 733 e25fb5351940
#REFACTORING by cg class: HGSourceCodeManager changed: #revisionLogOf:fromRevision:toRevision:numberOfRevisions:fileName:directory:module:
mercurial/HGSourceCodeManager.st
--- a/mercurial/HGSourceCodeManager.st	Fri Nov 18 11:58:13 2016 +0100
+++ b/mercurial/HGSourceCodeManager.st	Fri Nov 18 18:07:21 2016 +0100
@@ -270,7 +270,7 @@
 
      The returned information is a structure (IdentityDictionary)
      filled with:
-            #container          -> the RCS/CVS container file name 
+            #container          -> the file name again 
             #cvsRoot            -> the CVS root (repository) 
             #filename           -> the actual source file name
             #newestRevision     -> the revisionString of the newest revision
@@ -292,7 +292,6 @@
               #author                -> who checked that revision into the repository
               #date                  -> when was it checked in
               #state                 -> the RCS state
-              #numberOfChangedLines  -> the number of changed line w.r.t the previous
               #logMessage            -> the checkIn log message
 
             revisions are ordered newest first 
@@ -348,7 +347,6 @@
         entry at:#author                put: rev author."/ -> who checked that revision into the repository
         entry at:#date                  put: rev timestamp printString."/ -> when was it checked in
         entry at:#state                 put: 'Exp'. "/ -> the RCS state   
-        entry at:#numberOfChangedLines  put: 'N/A'. "/ -> the number of changed line w.r.t the previous
         entry at:#logMessage            put: rev message."/ -> the checkIn log message.
         log add: entry.