giacomo     2003/01/09 06:40:52

  Modified:    src/java/org/apache/cocoon/components/crawler
                        SimpleCocoonCrawlerImpl.java
  Log:
  make some method package protected instead of privat to increase performance by 
avoiding 'access emulated by a synthetic accessor method' (objected by eclipse)
  
  Revision  Changes    Path
  1.17      +4 -4      
xml-cocoon2/src/java/org/apache/cocoon/components/crawler/SimpleCocoonCrawlerImpl.java
  
  Index: SimpleCocoonCrawlerImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/java/org/apache/cocoon/components/crawler/SimpleCocoonCrawlerImpl.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -d -b -u -r1.16 -r1.17
  --- SimpleCocoonCrawlerImpl.java      5 Dec 2002 09:27:50 -0000       1.16
  +++ SimpleCocoonCrawlerImpl.java      9 Jan 2003 14:40:51 -0000       1.17
  @@ -188,7 +188,7 @@
       private String accept = ACCEPT_DEFAULT;
   
       private HashSet crawled;
  -    private HashSet urlsToProcess;
  +    HashSet urlsToProcess;
   
   
       /**
  @@ -437,7 +437,7 @@
        * @return      List of URLs, which are links from url, asserting the 
conditions.
        * @since
        */
  -    private List getLinks(URL url) {
  +    List getLinks(URL url) {
           ArrayList url_links = null;
           String sURL = url.toString();
   
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to