Ignore:
Timestamp:
2019-05-27T12:37:31+02:00 (5 years ago)
Author:
Don-vip
Message:

sonarqube, javadoc

File:
1 edited

Legend:

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

    r14668 r15121  
    11321132    @Override
    11331133    public boolean checkSaveConditions() {
    1134         if (isDataSetEmpty() && 1 != GuiHelper.runInEDTAndWaitAndReturn(() -> {
    1135             return new ExtendedDialog(
     1134        if (isDataSetEmpty() && 1 != GuiHelper.runInEDTAndWaitAndReturn(() ->
     1135            new ExtendedDialog(
    11361136                    MainApplication.getMainFrame(),
    11371137                    tr("Empty document"),
     
    11391139                .setContent(tr("The document contains no data."))
    11401140                .setButtonIcons("save", "cancel")
    1141                 .showDialog().getValue();
    1142         })) {
     1141                .showDialog().getValue()
     1142        )) {
    11431143            return false;
    11441144        }
Note: See TracChangeset for help on using the changeset viewer.