gcasper     2004/03/22 09:09:39

  Modified:    src/blocks/webdav/java/org/apache/cocoon/components/source/impl
                        WebDAVSource.java
  Log:
  Tabs to spaces
  
  Revision  Changes    Path
  1.22      +4 -4      
cocoon-2.1/src/blocks/webdav/java/org/apache/cocoon/components/source/impl/WebDAVSource.java
  
  Index: WebDAVSource.java
  ===================================================================
  RCS file: 
/home/cvs/cocoon-2.1/src/blocks/webdav/java/org/apache/cocoon/components/source/impl/WebDAVSource.java,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- WebDAVSource.java 22 Mar 2004 17:05:28 -0000      1.21
  +++ WebDAVSource.java 22 Mar 2004 17:09:39 -0000      1.22
  @@ -168,11 +168,11 @@
        */
       private WebDAVSource (WebdavResource source, String principal, String 
password)
       throws HttpException, IOException {
  -     this.resource = source;
  -     this.systemId = source.getHttpURL().getURI();
  +        this.resource = source;
  +        this.systemId = source.getHttpURL().getURI();
           source.getHttpURL().setUserinfo(principal, password);
   
  -     //fix trailing slash
  +        //fix trailing slash
           if (this.resource.isCollection() && (this.systemId.endsWith("/") == 
false)) {
               this.systemId = this.systemId+"/";
               HttpURL httpURL = new HttpURL(this.systemId);
  
  
  

Reply via email to