Changeset 33990 in osm


Ignore:
Timestamp:
2018-01-10T17:23:06+01:00 (7 years ago)
Author:
donvip
Message:

fix shortcut warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/CustomizePublicTransportStop/src/ru/rodsoft/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java

    r33987 r33990  
    5858    public static CustomizeStopAction createCustomizeStopAction()
    5959    {
     60        // CHECKSTYLE.OFF: LineLength
    6061        CustomizeStopAction action = new CustomizeStopAction(
    6162                tr(CUSTOMIZE_STOP_ACTION_MENU_NAME), CUSTOMIZE_STOP_ACTION_ICON_NAME,
    6263                tr(CUSTOMIZE_STOP_ACTION_MENU_TOOLTIP),
    63                 // CHECKSTYLE.OFF: LineLength
    64                 Shortcut.registerShortcut("tools:customizestop", tr("Tool: {0}", tr(CUSTOMIZE_STOP_ACTION_MENU_NAME)), KeyEvent.VK_U, Shortcut.DIRECT), true);
    65                 // CHECKSTYLE.ON: LineLength
     64                Shortcut.registerShortcut("tools:customizestop", tr("Tool: {0}", tr(CUSTOMIZE_STOP_ACTION_MENU_NAME)), KeyEvent.VK_U, Shortcut.DIRECT),
     65                true);
    6666        action.putValue("help", ht("/Action/CustomizeStopAction"));
     67        // CHECKSTYLE.ON: LineLength
    6768        return action;
    6869    }
Note: See TracChangeset for help on using the changeset viewer.