Changeset 26828 in osm for applications/editors
- Timestamp:
- 2011-10-10T21:48:48+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java
r26819 r26828 231 231 232 232 for (int i = first; i < last; i++) { 233 String voxFile = String.format("vox%05d ", i);234 String nextVoxFile = String.format("vox%05d ", i+1);233 String voxFile = String.format("vox%05d.wav", i); 234 String nextVoxFile = String.format("vox%05d.wav", i+1); 235 235 if (!voxFiles.containsKey(voxFile)) { 236 236 System.out.println("Found lost vox file " + voxFile); … … 371 371 372 372 if (!ColumbusCSVUtils.isStringNullOrEmpty(voxFile)) { 373 voxFile = voxFile + ".wav"; 373 374 File file = getVoxFilePath(fileDir, voxFile); 374 375 if (file != null && file.exists()) { … … 453 454 454 455 for (int i = 0; i < fileNameVariants.length; i++) { 455 File file = new File(fileDir + File.separator + fileNameVariants[i] + ".wav"); 456 System.out.println("Probing "+ fileNameVariants[i]); 457 File file = new File(fileDir + File.separator + fileNameVariants[i]); 456 458 if (file.exists()) { 457 459 return file;
Note:
See TracChangeset
for help on using the changeset viewer.