Ignore:
Timestamp:
2016-11-17T22:45:25+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - fix recently added warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java

    r11270 r11277  
    5656 */
    5757public class DownloadDialog extends JDialog {
    58     private static IntegerProperty DOWNLOAD_TAB = new IntegerProperty("download.tab", 0);
    59 
    60     private static BooleanProperty DOWNLOAD_AUTORUN = new BooleanProperty("download.autorun", false);
    61     private static BooleanProperty DOWNLOAD_OSM = new BooleanProperty("download.osm", true);
    62     private static BooleanProperty DOWNLOAD_GPS = new BooleanProperty("download.gps", false);
    63     private static BooleanProperty DOWNLOAD_NOTES = new BooleanProperty("download.notes", false);
    64     private static BooleanProperty DOWNLOAD_NEWLAYER = new BooleanProperty("download.newlayer", false);
     58    private static final IntegerProperty DOWNLOAD_TAB = new IntegerProperty("download.tab", 0);
     59
     60    private static final BooleanProperty DOWNLOAD_AUTORUN = new BooleanProperty("download.autorun", false);
     61    private static final BooleanProperty DOWNLOAD_OSM = new BooleanProperty("download.osm", true);
     62    private static final BooleanProperty DOWNLOAD_GPS = new BooleanProperty("download.gps", false);
     63    private static final BooleanProperty DOWNLOAD_NOTES = new BooleanProperty("download.notes", false);
     64    private static final BooleanProperty DOWNLOAD_NEWLAYER = new BooleanProperty("download.newlayer", false);
    6565
    6666    /** the unique instance of the download dialog */
Note: See TracChangeset for help on using the changeset viewer.