Changeset 16097 in josm for trunk/src/org


Ignore:
Timestamp:
2020-03-08T21:36:20+01:00 (5 years ago)
Author:
Don-vip
Message:

see #18638 - checkstyle

Location:
trunk/src/org/openstreetmap/josm/gui/dialogs/layer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerDownAction.java

    r16090 r16097  
    3434     */
    3535    public CycleLayerDownAction() {
    36         super(tr("Cycle layer down"), "dialogs/previous", tr("Cycle through data layers in a downward direction"), cycleDown, true, "cycle-layer-down", false);
     36        super(tr("Cycle layer down"), "dialogs/previous", tr("Cycle through data layers in a downward direction"),
     37                cycleDown, true, "cycle-layer-down", false);
    3738        new ImageProvider("dialogs", "previous").getResource().attachImageIcon(this, true);
    3839        putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers."));
  • trunk/src/org/openstreetmap/josm/gui/dialogs/layer/CycleLayerUpAction.java

    r16090 r16097  
    3232     */
    3333    public CycleLayerUpAction() {
    34         super(tr("Cycle layer up"), "dialogs/next", tr("Cycle through data layers in an upward direction"), cycleUp, true, "cycle-layer-up", false);
     34        super(tr("Cycle layer up"), "dialogs/next", tr("Cycle through data layers in an upward direction"),
     35                cycleUp, true, "cycle-layer-up", false);
    3536        new ImageProvider("dialogs", "next").getResource().attachImageIcon(this, true);
    3637        putValue(SHORT_DESCRIPTION, tr("Cycle through visible layers."));
Note: See TracChangeset for help on using the changeset viewer.