--- projects/cms/source/conient/uk/org/iscream/cms/conient/ConnectionHandler.java 2001/05/01 19:25:14 1.32 +++ projects/cms/source/conient/uk/org/iscream/cms/conient/ConnectionHandler.java 2001/05/29 17:41:32 1.33 @@ -1,8 +1,8 @@ //---PACKAGE DECLARATION--- -package uk.org.iscream.conient; +package uk.org.iscream.cms.conient; //---IMPORTS--- -import uk.org.iscream.util.*; +import uk.org.iscream.cms.server.util.*; import java.io.*; import java.net.*; import javax.swing.JOptionPane; @@ -16,8 +16,8 @@ import javax.swing.JOptionPane; * Currently this is the main thread where all non-GUI events * are dispatched to. * - * @author $Author: ajm $ - * @version $Id: ConnectionHandler.java,v 1.32 2001/05/01 19:25:14 ajm Exp $ + * @author $Author: tdb $ + * @version $Id: ConnectionHandler.java,v 1.33 2001/05/29 17:41:32 tdb Exp $ */ public class ConnectionHandler extends Thread { @@ -26,7 +26,7 @@ public class ConnectionHandler extends Thread { /** * The current CVS revision of this class */ - public final String REVISION = "$Revision: 1.32 $"; + public final String REVISION = "$Revision: 1.33 $"; /** @@ -120,7 +120,7 @@ public class ConnectionHandler extends Thread { * The algorithm we use to remove items from the queue * if it reaches its maximum size. * - * We use a FIFO algorithm, see the uk.org.iscream.util.Queue + * We use a FIFO algorithm, see the uk.org.iscream.cms.server.util.Queue * class for other options. */ public static final int QUEUE_ALGORITHM = Queue.FIRST;