Collection.st
changeset 24107 5a6df1f710ff
parent 24027 e7dee6e7966c
child 24146 7f198b02b945
--- a/Collection.st	Sat May 04 18:30:33 2019 +0200
+++ b/Collection.st	Mon May 06 18:52:00 2019 +0200
@@ -818,7 +818,7 @@
 
     |theLastOne any|
 
-    Logger info:'slow last (uses enumeration)'.
+    Logger info:'%1: slow last (uses enumeration)' with:self class name.
     
     any := false.
     self do:[:e | any := true. theLastOne := e].
@@ -830,6 +830,7 @@
     ^ self emptyCollectionError
 
     "Modified: / 17-07-2017 / 17:12:24 / cg"
+    "Modified: / 06-05-2019 / 18:49:48 / Claus Gittinger"
 !
 
 last:n