#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 18 Jan 2018 19:07:03 +0100
changeset 17944 58da3a446bc2
parent 17943 b2efb0175eab
child 17945 e5a9fa05e956
#DOCUMENTATION by cg class: VersionDiffBrowser changed: #updateLists
VersionDiffBrowser.st
--- a/VersionDiffBrowser.st	Thu Jan 18 17:18:35 2018 +0100
+++ b/VersionDiffBrowser.st	Thu Jan 18 19:07:03 2018 +0100
@@ -2297,20 +2297,20 @@
 !
 
 updateLists
-    "walk over the changeSet and setup the 3 lists:
+    "walk over the changeSet(s) and setup the 3 lists:
      onlyInA, changed, onlyInB,
      Optionally filter extensions, categoryChanges and versionMethods,
      changes with same semantic (variable renames)
      and changes which have been explicitly filtered by the user."
 
     |listOnlyInA listOnlyInB listChanged
-     printStringGenerator sortBlockForChangeLists filteredList
+     printStringGenerator "sortBlockForChangeLists" filteredList
      numIgnoredExtensions numIgnoredVersionMethods 
      info needFilter entryIsForCommentOrFormatOnly
      isIgnoredChange isIgnored1 isIgnored2 isIgnored3 isIgnored4 isIgnored5|
 
     printStringGenerator := [:aChange | self printStringForChange:aChange].
-    sortBlockForChangeLists := [:a :b | (printStringGenerator value:a) < (printStringGenerator value:b)].
+    "/ sortBlockForChangeLists := [:a :b | (printStringGenerator value:a) < (printStringGenerator value:b)].
 
     numIgnoredExtensions := numIgnoredVersionMethods := 0.
     needFilter := self includeExtensions not