#TUNING by cg
authorClaus Gittinger <cg@exept.de>
Mon, 06 May 2019 18:52:00 +0200
changeset 24107 5a6df1f710ff
parent 24106 57fa3fced677
child 24108 7a3a01285e59
#TUNING by cg class: Collection changed: #last
Collection.st
--- 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