Changeset 12286 in josm
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/JpgImporter.java
r8870 r12286 16 16 import org.openstreetmap.josm.gui.layer.geoimage.GeoImageLayer; 17 17 import org.openstreetmap.josm.gui.progress.ProgressMonitor; 18 import org.openstreetmap.josm.tools.Utils;19 18 20 19 /** … … 88 87 } 89 88 90 privatestatic void addRecursiveFiles(List<File> files, Set<String> visitedDirs, List<File> sel, ProgressMonitor progressMonitor)89 static void addRecursiveFiles(List<File> files, Set<String> visitedDirs, List<File> sel, ProgressMonitor progressMonitor) 91 90 throws IOException { 92 91 … … 107 106 } 108 107 } else { 109 if ( Utils.hasExtension(f, "jpg")) {108 if (FILE_FILTER.accept(f)) { 110 109 files.add(f); 111 110 }
Note:
See TracChangeset
for help on using the changeset viewer.