Ignore:
Timestamp:
2018-08-19T22:35:16+02:00 (8 years ago)
Author:
donvip
Message:

rename packages, fix warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/surveyor/src/org/dinopolis/util/io/Tokenizer.java

    r30737 r34591  
    2323
    2424import java.io.IOException;
    25 import java.io.InputStream;
    26 import java.io.InputStreamReader;
    2725import java.io.PushbackReader;
    2826import java.io.Reader;
     
    228226//----------------------------------------------------------------------
    229227/**
    230  * Creates a tokenizer that reads from the given string. It uses the
    231  * comma as delimiter, does not respect escape characters but respects
    232  * quoted words.
    233  *
    234  * @param inStream the stream to read from.
    235  */
    236   public Tokenizer(InputStream inStream)
    237   {
    238     this(new InputStreamReader(inStream));
    239   }
    240 
    241 //----------------------------------------------------------------------
    242 /**
    243228 * Creates a tokenizer that reads from the given reader. It uses the
    244229 * comma as delimiter, does not respect escape characters but respects
Note: See TracChangeset for help on using the changeset viewer.