Ignore:
Timestamp:
2014-02-05T23:22:04+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #8234 - remove duplicated/unused icons + javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/server/OsmApiUrlInputPanel.java

    r6653 r6814  
    4141 */
    4242public class OsmApiUrlInputPanel extends JPanel {
    43    
     43
    4444    /**
    4545     * OSM API URL property key.
     
    5454    /** indicates whether to use the default OSM URL or not */
    5555    private JCheckBox cbUseDefaultServerUrl;
    56    
     56
    5757    private ApiUrlPropagator propagator;
    5858
     
    154154        }
    155155    }
    156    
     156
    157157    /**
    158158     * Returns the entered API URL, stripped of leading and trailing white characters.
    159      * @return the entered API URL, stripped of leading and trailing white characters. 
     159     * @return the entered API URL, stripped of leading and trailing white characters.
    160160     *         May be an empty string if nothing has been entered. In this case, it means the user wants to use {@link OsmApi#DEFAULT_API_URL}.
    161161     * @see Utils#strip(String)
     
    189189                        public void run() {
    190190                            if (task.isSuccess()) {
    191                                 lblValid.setIcon(ImageProvider.get("dialogs/changeset", "valid"));
     191                                lblValid.setIcon(ImageProvider.get("dialogs", "valid"));
    192192                                lblValid.setToolTipText(tr("The API URL is valid."));
    193193                                lastTestedUrl = url;
Note: See TracChangeset for help on using the changeset viewer.