changed: #goodInitialLogMessageForCheckinClassOfClass:
authorClaus Gittinger <cg@exept.de>
Wed, 23 Sep 2009 22:04:48 +0200
changeset 2161 c1d39e2f7115
parent 2160 831832c4c164
child 2162 ba8b5a58c989
changed: #goodInitialLogMessageForCheckinClassOfClass:
SourceCodeManagerUtilities.st
--- a/SourceCodeManagerUtilities.st	Wed Sep 23 22:02:58 2009 +0200
+++ b/SourceCodeManagerUtilities.st	Wed Sep 23 22:04:48 2009 +0200
@@ -2966,7 +2966,7 @@
                                 select:[:aChange | aChange isMethodCodeChange].
     selectorsInChangeSet := allMethodChangesForThisClass collect:[:aChange | aChange changeSelector] as:Set.
     methodChangesForThisClass := selectorsInChangeSet collect:[:eachSelector |
-                                        allMethodChangesForThisClass detectLast:[:change | change changeSelector = eachSelector]].
+                                        allMethodChangesForThisClass detectLast:[:change | change changeSelector = eachSelector]] as:OrderedCollection.
                                             
     modifiedMethodsForThisClass := methodChangesForThisClass 
                                 select:[:aChange | aChange previousVersion notNil].
@@ -3085,5 +3085,5 @@
 !SourceCodeManagerUtilities class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.187 2009-09-23 13:14:05 sr Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.188 2009-09-23 20:04:48 cg Exp $'
 ! !