Changeset 16053 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2020-03-07T10:57:23+01:00 (5 years ago)
Author:
simon04
Message:

checkstyle/PMD

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java

    r16046 r16053  
    9191     */
    9292    public char delimiter = ';'; // NOSONAR
    93     /** whether the last value is used as default. Using "force" (2) enforces this behaviour also for already tagged objects. Default is "false" (0).*/
    94     public byte use_last_as_default = 0; // NOSONAR
     93    /** whether the last value is used as default.
     94     * Using "force" (2) enforces this behaviour also for already tagged objects. Default is "false" (0).*/
     95    public byte use_last_as_default; // NOSONAR
    9596    /** whether to use values for search via {@link TaggingPresetSelector} */
    96     public boolean values_searchable = false; // NOSONAR
     97    public boolean values_searchable; // NOSONAR
    9798
    9899    protected JComponent component;
     
    536537    }
    537538
    538     public void setUse_last_as_default(String v) {
     539    public void setUse_last_as_default(String v) { // NOSONAR
    539540        if ("force".equals(v)) {
    540541            use_last_as_default = 2;
Note: See TracChangeset for help on using the changeset viewer.