Changeset 16053 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-03-07T10:57:23+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/ComboMultiSelect.java
r16046 r16053 91 91 */ 92 92 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 95 96 /** whether to use values for search via {@link TaggingPresetSelector} */ 96 public boolean values_searchable = false; // NOSONAR97 public boolean values_searchable; // NOSONAR 97 98 98 99 protected JComponent component; … … 536 537 } 537 538 538 public void setUse_last_as_default(String v) { 539 public void setUse_last_as_default(String v) { // NOSONAR 539 540 if ("force".equals(v)) { 540 541 use_last_as_default = 2;
Note:
See TracChangeset
for help on using the changeset viewer.