Changeset 14691 in josm


Ignore:
Timestamp:
2019-01-13T13:25:50+01:00 (5 years ago)
Author:
simon04
Message:

see #17202 - Fix NPE in UploadDialogTest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/InputMapUtils.java

    r14689 r14691  
    129129        c.getActionMap().put("ctrl_enter", a);
    130130        c.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(stroke, "ctrl_enter");
    131         Optional.ofNullable(a.getValue(Action.SHORT_DESCRIPTION))
     131        Optional.ofNullable(a)
     132                .map(x -> x.getValue(Action.SHORT_DESCRIPTION))
    132133                .map(String::valueOf)
    133134                .ifPresent(text -> Shortcut.setTooltip(a, text, stroke));
Note: See TracChangeset for help on using the changeset viewer.