--- projects/cms/source/util/uk/org/iscream/cms/util/Queue.java 2001/04/04 20:51:16 1.21 +++ projects/cms/source/util/uk/org/iscream/cms/util/Queue.java 2001/05/29 17:02:35 1.22 @@ -1,11 +1,11 @@ //---PACKAGE DECLARATION--- -package uk.org.iscream.util; +package uk.org.iscream.cms.server.util; //---IMPORTS--- import java.util.LinkedList; import java.util.NoSuchElementException; import java.util.Random; -import uk.org.iscream.util.*; +import uk.org.iscream.cms.server.util.*; /** * A Queue class designed to operate in a multi-threaded environment, with @@ -14,7 +14,7 @@ import uk.org.iscream.util.*; * actually contains some elements. * * @author $Author: tdb $ - * @version $Id: Queue.java,v 1.21 2001/04/04 20:51:16 tdb Exp $ + * @version $Id: Queue.java,v 1.22 2001/05/29 17:02:35 tdb Exp $ */ public class Queue { @@ -23,7 +23,7 @@ public class Queue { /** * The current CVS revision of this class */ - public static final String REVISION = "$Revision: 1.21 $"; + public static final String REVISION = "$Revision: 1.22 $"; /** * Pass to constructor to remove a RANDOM item from @@ -332,7 +332,7 @@ public class Queue { * Overrides the {@link java.lang.Object#toString() Object.toString()} * method to provide clean logging (every class should have this). * - * This uses the uk.org.iscream.util.FormatName class + * This uses the uk.org.iscream.cms.server.util.FormatName class * to format the toString() * * @return the name of this class and its CVS revision.