donaldp     2002/07/04 20:40:19

  Modified:    framework/src/todo/org/apache/tools/todo/util FileUtils.java
  Log:
  Remove redundent null assignment
  
  Revision  Changes    Path
  1.3       +2 -2      
jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/FileUtils.java
  
  Index: FileUtils.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant-myrmidon/framework/src/todo/org/apache/tools/todo/util/FileUtils.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- FileUtils.java    5 Jul 2002 03:39:27 -0000       1.2
  +++ FileUtils.java    5 Jul 2002 03:40:19 -0000       1.3
  @@ -79,7 +79,7 @@
           }
   
           boolean dosWithDrive = false;
  -        String root = null;
  +        String root;
           // Eliminate consecutive slashes after the drive spec
           if( path.length() >= 2 &&
               Character.isLetter( path.charAt( 0 ) ) &&
  
  
  

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

Reply via email to