- Timestamp:
- 2005-10-04T21:33:18+02:00 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/actions/OpenGpxAction.java
r11 r12 42 42 public boolean accept(File f) { 43 43 String name = f.getName().toLowerCase(); 44 return name.endsWith(".gpx") || name.endsWith(".xml"); 44 return f.isDirectory() || name.endsWith(".gpx") || name.endsWith(".xml"); 45 45 } 46 46 @Override
Note:
See TracChangeset
for help on using the changeset viewer.