Queue.st
changeset 1918 38fa135c92ef
parent 1497 5db4d4288c2c
child 2148 5fe0c7beef0c
--- a/Queue.st	Wed Nov 21 18:24:07 2007 +0100
+++ b/Queue.st	Wed Nov 21 18:24:10 2007 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic2' }"
 
 Collection subclass:#Queue
@@ -375,13 +374,11 @@
 
 !Queue methodsFor:'accessing-protocol compatibility'!
 
-addLast:someObject
+add:someObject
     "same as #nextPut: - for protocol compatibility with other collections"
 
     self nextPut:someObject.
     ^ someObject
-
-    "Created: / 27.8.1998 / 11:15:29 / cg"
 !
 
 removeFirst
@@ -455,5 +452,5 @@
 !Queue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.30 2004-11-24 09:31:46 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Queue.st,v 1.31 2007-11-21 17:24:10 stefan Exp $'
 ! !