You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by ot...@apache.org on 2002/09/15 20:15:46 UTC

cvs commit: jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/fetcher FetcherTaskQueue.java

otis        2002/09/15 11:15:46

  Modified:    contributions/webcrawler-LARM/src/de/lanlab/larm/fetcher
                        FetcherTaskQueue.java
  Log:
  - Fixed vague class reference that caused compilation errors with Jikes.
  
  Revision  Changes    Path
  1.4       +8 -9      jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/fetcher/FetcherTaskQueue.java
  
  Index: FetcherTaskQueue.java
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/fetcher/FetcherTaskQueue.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FetcherTaskQueue.java	17 Jun 2002 13:59:28 -0000	1.3
  +++ FetcherTaskQueue.java	15 Sep 2002 18:15:46 -0000	1.4
  @@ -52,11 +52,12 @@
    * <http://www.apache.org/>.
    */
   
  - package de.lanlab.larm.fetcher;
  +package de.lanlab.larm.fetcher;
   
  -import de.lanlab.larm.threads.*;
  -import de.lanlab.larm.util.*;
  -import java.util.*;
  +import de.lanlab.larm.threads.TaskQueue;
  +import de.lanlab.larm.util.Queue;
  +import de.lanlab.larm.util.CachingQueue;
  +import de.lanlab.larm.util.HashedCircularLinkedList;
   import java.net.URL;
   
   /**
  @@ -76,8 +77,8 @@
        * CachingQueue that stores all tasks for this server
        * @TODO probably link this to the host info structure
        */
  -    HashedCircularLinkedList servers = new HashedCircularLinkedList(100, 0.75f);
  -    int size = 0;
  +    private HashedCircularLinkedList servers = new HashedCircularLinkedList(100, 0.75f);
  +    private int size = 0;
   
   
       /**
  @@ -248,7 +249,5 @@
           {
               t.printStackTrace();
           }
  -
       }
  -
   }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>