Ignore:
Timestamp:
09.09.2009 00:46:01 (3 years ago)
Author:
Gubaer
Message:

Removed deprecated constructors in ExtendedDialog
Turned most of the fields in the OSM data classes into private fields

File:
1 edited

Legend:

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

    r2082 r2083  
    7575 
    7676    /** 
    77      * Registers an upload hook. Adds the hook to the end of the list of upload hooks. 
     77     * Registers an upload hook. Adds the hook at the first position of the upload hooks. 
    7878     *  
    7979     * @param hook the upload hook. Ignored if null. 
     
    8282        if(hook == null) return; 
    8383        if (!uploadHooks.contains(hook)) { 
    84             uploadHooks.add(hook); 
     84            uploadHooks.add(0,hook); 
    8585        } 
    8686    } 
Note: See TracChangeset for help on using the changeset viewer.