changed comment: #removeIdentical:ifAbsent:
authorStefan Vogel <sv@exept.de>
Wed, 08 Dec 2010 16:06:55 +0100
changeset 13163 e4845fce0ada
parent 13162 dd688290df14
child 13164 b09c736a2e9b
changed comment: #removeIdentical:ifAbsent:
LinkedList.st
--- a/LinkedList.st	Fri Dec 03 14:44:14 2010 +0100
+++ b/LinkedList.st	Wed Dec 08 16:06:55 2010 +0100
@@ -276,8 +276,7 @@
 
 removeIdentical:aLink ifAbsent:exceptionBlock
     "remove the argument, aLink from the sequence and return it;
-     if absent, evaluate the exceptionBlock.
-     Actually this is really a #removeIdentical (but for compatibility...)"
+     if absent, evaluate the exceptionBlock."
 
     |prevNode nextNode thisNode|
 
@@ -431,9 +430,9 @@
 !LinkedList class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.39 2010-11-30 14:07:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.40 2010-12-08 15:06:55 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.39 2010-11-30 14:07:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/LinkedList.st,v 1.40 2010-12-08 15:06:55 stefan Exp $'
 ! !