You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by do...@apache.org on 2001/12/30 04:30:56 UTC

cvs commit: jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant PathTokenizer.java

donaldp     01/12/29 19:30:56

  Modified:    proposal/myrmidon/src/main/org/apache/tools/ant
                        PathTokenizer.java
  Log:
  Remove redundent assignment
  
  Revision  Changes    Path
  1.4       +1 -2      jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/PathTokenizer.java
  
  Index: PathTokenizer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/main/org/apache/tools/ant/PathTokenizer.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PathTokenizer.java	23 Dec 2001 06:34:49 -0000	1.3
  +++ PathTokenizer.java	30 Dec 2001 03:30:55 -0000	1.4
  @@ -20,11 +20,10 @@
    */
   public class PathTokenizer
   {
  -
       /**
        * A String which stores any path components which have been read ahead.
        */
  -    private String lookahead = null;
  +    private String lookahead;
   
       /**
        * Flag to indicate whether we are running on a platform with a DOS style
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>