luetzkendorf    2004/12/30 07:39:45

  Modified:    webdavclient/ant/src/java/org/apache/webdav/ant
                        CollectionScanner.java ResourceProperties.java
  Log:
  merge in small fixes from release branch
  
  Revision  Changes    Path
  1.6       +4 -4      
jakarta-slide/webdavclient/ant/src/java/org/apache/webdav/ant/CollectionScanner.java
  
  Index: CollectionScanner.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/webdavclient/ant/src/java/org/apache/webdav/ant/CollectionScanner.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- CollectionScanner.java    24 Aug 2004 16:11:15 -0000      1.5
  +++ CollectionScanner.java    30 Dec 2004 15:39:45 -0000      1.6
  @@ -111,7 +111,7 @@
            this.client.executeMethod(propFind);
         } 
         catch (IOException e) {
  -         Utils.makeBuildException("Can't read collection content!", e);
  +         throw Utils.makeBuildException("Can't read collection content!", e);
         }
         
         List subCollections = new ArrayList();
  
  
  
  1.5       +4 -4      
jakarta-slide/webdavclient/ant/src/java/org/apache/webdav/ant/ResourceProperties.java
  
  Index: ResourceProperties.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-slide/webdavclient/ant/src/java/org/apache/webdav/ant/ResourceProperties.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ResourceProperties.java   20 Aug 2004 10:53:21 -0000      1.4
  +++ ResourceProperties.java   30 Dec 2004 15:39:45 -0000      1.5
  @@ -66,7 +66,7 @@
            for(Enumeration f = propFind.getResponseProperties(href); 
                f.hasMoreElements();) 
            {
  -            properties.add((Property)f.nextElement());
  +            properties.add(f.nextElement());
            }
         }
      }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to