Ignore:
Timestamp:
2017-05-15T22:57:02+02:00 (7 years ago)
Author:
michael2402
Message:

Add javadoc to OsmUtils, fix constant naming.

File:
1 edited

Legend:

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

    r11452 r12187  
    2323    public String locale_text; // NOSONAR
    2424    /** the value to set when checked (default is "yes") */
    25     public String value_on = OsmUtils.trueval; // NOSONAR
     25    public String value_on = OsmUtils.TRUE_VALUE; // NOSONAR
    2626    /** the value to set when unchecked (default is "no") */
    27     public String value_off = OsmUtils.falseval; // NOSONAR
     27    public String value_off = OsmUtils.FALSE_VALUE; // NOSONAR
    2828    /** whether the off value is disabled in the dialog, i.e., only unset or yes are provided */
    2929    public boolean disable_off; // NOSONAR
Note: See TracChangeset for help on using the changeset viewer.