#BUGFIX by exept
authorClaus Gittinger <cg@exept.de>
Sun, 25 Aug 2019 12:09:40 +0200
changeset 4475 c9313037b648
parent 4474 625c2c16166e
child 4476 f146c4358780
#BUGFIX by exept class: CompositeChange changed: #do: do MUST return self
CompositeChange.st
--- a/CompositeChange.st	Sun Aug 25 12:09:30 2019 +0200
+++ b/CompositeChange.st	Sun Aug 25 12:09:40 2019 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2006 by eXept Software AG
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 Change subclass:#CompositeChange
 	instanceVariableNames:'name changes'
 	classVariableNames:''
@@ -76,8 +80,7 @@
 !CompositeChange methodsFor:'enumerating'!
 
 do: aBlock
-
-    ^changes do: aBlock
+    changes do: aBlock
 
     "Created: / 29-10-2010 / 14:03:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
@@ -117,11 +120,11 @@
 !CompositeChange class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/CompositeChange.st,v 1.5 2014-02-19 13:05:25 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/CompositeChange.st,v 1.5 2014-02-19 13:05:25 cg Exp $'
+    ^ '$Header$'
 !
 
 version_SVN