Ignore:
Timestamp:
2011-10-10T21:48:48+02:00 (13 years ago)
Author:
oliverw
Message:

Fixed #6907 (Consider also extension for upper/lower case).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java

    r26819 r26828  
    231231
    232232                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);
    235235                        if (!voxFiles.containsKey(voxFile)) {
    236236                                System.out.println("Found lost vox file " + voxFile);
     
    371371
    372372                if (!ColumbusCSVUtils.isStringNullOrEmpty(voxFile)) {
     373                        voxFile = voxFile + ".wav";
    373374                        File file = getVoxFilePath(fileDir, voxFile);
    374375                        if (file != null && file.exists()) {
     
    453454               
    454455                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]);
    456458                        if (file.exists()) {
    457459                                return file;
Note: See TracChangeset for help on using the changeset viewer.