diff -r 61c602336f3d -r 38fa135c92ef Queue.st --- 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 $' ! !