arieh       01/03/21 14:23:08

  Modified:    src/share/org/apache/tomcat/util Tag: tomcat_32
                        FileUtil.java
  Log:
  Remove the trim() call.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.9.2.8   +4 -4      
jakarta-tomcat/src/share/org/apache/tomcat/util/Attic/FileUtil.java
  
  Index: FileUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/Attic/FileUtil.java,v
  retrieving revision 1.9.2.7
  retrieving revision 1.9.2.8
  diff -u -r1.9.2.7 -r1.9.2.8
  --- FileUtil.java     2001/03/16 23:39:50     1.9.2.7
  +++ FileUtil.java     2001/03/21 22:23:06     1.9.2.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/Attic/FileUtil.java,v 
1.9.2.7 2001/03/16 23:39:50 arieh Exp $
  - * $Revision: 1.9.2.7 $
  - * $Date: 2001/03/16 23:39:50 $
  + * $Header: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/util/Attic/FileUtil.java,v 
1.9.2.8 2001/03/21 22:23:06 arieh Exp $
  + * $Revision: 1.9.2.8 $
  + * $Date: 2001/03/21 22:23:06 $
    *
    * ====================================================================
    *
  @@ -228,7 +228,7 @@
       }
   
       public static String patch(String path) {
  -     String patchPath = path.trim();
  +     String patchPath = path;
   
        // Move drive spec to the front of the path
        if (patchPath.length() >= 3 &&
  
  
  

Reply via email to