Changeset 1275 in josm for trunk


Ignore:
Timestamp:
2009-01-17T11:59:11+01:00 (15 years ago)
Author:
ulfl
Message:

if we open a file, print on the console the files name and size

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/OpenFileAction.java

    r1212 r1275  
    5757    public void openFile(File file) {
    5858        try {
     59            System.out.println("Open file: " + file.getAbsolutePath() + " (" + file.length() + " bytes)");
    5960            if (asGpxData(file.getName()))
    6061                openFileAsGpx(file);
Note: See TracChangeset for help on using the changeset viewer.