Changeset 34591 in osm for applications/editors/josm/plugins/surveyor/src/org/dinopolis
- Timestamp:
- 2018-08-19T22:35:16+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/org/dinopolis/util/io/Tokenizer.java
r30737 r34591 23 23 24 24 import java.io.IOException; 25 import java.io.InputStream;26 import java.io.InputStreamReader;27 25 import java.io.PushbackReader; 28 26 import java.io.Reader; … … 228 226 //---------------------------------------------------------------------- 229 227 /** 230 * Creates a tokenizer that reads from the given string. It uses the231 * comma as delimiter, does not respect escape characters but respects232 * 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 /**243 228 * Creates a tokenizer that reads from the given reader. It uses the 244 229 * comma as delimiter, does not respect escape characters but respects
Note:
See TracChangeset
for help on using the changeset viewer.
