Ignore:
Timestamp:
2013-07-17T00:01:07+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

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

    r6011 r6069  
    118118     * Creates a new "Save" dialog for a single {@link ExtensionFileFilter} and makes it visible.<br/>
    119119     * When the user has chosen a file, checks the file extension, and confirms overwrite if needed.
    120      * 
     120     *
    121121     * @param title The dialog title
    122122     * @param filter The dialog file filter
     
    133133     * Creates a new "Save" dialog for a given file extension and makes it visible.<br/>
    134134     * When the user has chosen a file, checks the file extension, and confirms overwrite if needed.
    135      * 
     135     *
    136136     * @param title The dialog title
    137137     * @param extension The file extension
     
    143143        return checkFileAndConfirmOverWrite(fc, extension);
    144144    }
    145    
     145
    146146    private static File checkFileAndConfirmOverWrite(JFileChooser fc, String extension) {
    147147        if (fc == null) return null;
    148148        File file = fc.getSelectedFile();
    149        
     149
    150150        FileFilter ff = fc.getFileFilter();
    151151        if (!ff.accept(file)) {
Note: See TracChangeset for help on using the changeset viewer.