Tools__CodeView2.st
changeset 15475 bee6a6ca1216
parent 15377 96011e799f1a
child 15520 ee71c6d3d759
--- a/Tools__CodeView2.st	Sat Feb 28 04:15:32 2015 +0100
+++ b/Tools__CodeView2.st	Sat Feb 28 04:16:09 2015 +0100
@@ -3454,8 +3454,6 @@
     pom := self hasSelection.
     (pom) ifTrue:[ ^ self. ].
 
-    "/ cg: how about 
-    "/      deletedLines select:[:l | l size > 0] thenDo:[...] ?
     i := 1.
     [ i <= (deletedLines size) ] whileTrue:[
         ((deletedLines at:i) > 0) ifTrue:[
@@ -3467,8 +3465,6 @@
         i := i + 1.
     ].
 
-    "/ cg: how about 
-    "/      insertedLines select:[:l | l size > 0] thenDo:[...] ?
     i := 1.
     [ i <= (insertedLines size) ] whileTrue:[
         ((insertedLines at:i) > 0) ifTrue:[
@@ -3480,8 +3476,6 @@
         i := i + 1.
     ].
 
-    "/ cg: how about 
-    "/      changedLines select:[:l | l size > 0] thenDo:[...] ?
     i := 1.
     [ i <= (changedLines size) ] whileTrue:[
         ((changedLines at:i) > 0) ifTrue:[
@@ -4254,15 +4248,15 @@
 !CodeView2 class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.185 2015-02-23 16:36:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.186 2015-02-28 03:16:09 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.185 2015-02-23 16:36:14 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CodeView2.st,v 1.186 2015-02-28 03:16:09 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: Tools__CodeView2.st,v 1.185 2015-02-23 16:36:14 cg Exp $'
+    ^ '$Id: Tools__CodeView2.st,v 1.186 2015-02-28 03:16:09 cg Exp $'
 ! !