asmuts      02/05/13 07:46:10

  Modified:    src/java/org/apache/jcs/auxiliary/disk/indexed
                        IndexedDiskCacheAttributes.java
  Log:
  made sure the disk path is trimmed to reduce stupid errors in configuration
  
  Revision  Changes    Path
  1.3       +1 -1      
jakarta-turbine-jcs/src/java/org/apache/jcs/auxiliary/disk/indexed/IndexedDiskCacheAttributes.java
  
  Index: IndexedDiskCacheAttributes.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-jcs/src/java/org/apache/jcs/auxiliary/disk/indexed/IndexedDiskCacheAttributes.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- IndexedDiskCacheAttributes.java   10 Apr 2002 15:00:59 -0000      1.2
  +++ IndexedDiskCacheAttributes.java   13 May 2002 14:46:10 -0000      1.3
  @@ -85,7 +85,7 @@
        */
       public void setDiskPath( String path )
       {
  -        this.diskPath = path;
  +        this.diskPath = path.trim();
       }
   
   
  
  
  

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

Reply via email to