- Timestamp:
- 2017-05-31T02:09:03+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java
r12279 r12281 1065 1065 1066 1066 ConflictCollection conflictsCol = getConflicts(); 1067 return conflictsCol == null || conflictsCol.isEmpty() || 1 == GuiHelper.runInEDTAndWaitAndReturn(() -> {1068 returnnew ExtendedDialog(1067 return conflictsCol == null || conflictsCol.isEmpty() || 1 == GuiHelper.runInEDTAndWaitAndReturn(() -> 1068 new ExtendedDialog( 1069 1069 Main.parent, 1070 1070 /* I18N: Display title of the window showing conflicts */ … … 1074 1074 tr("There are unresolved conflicts. Conflicts will not be saved and handled as if you rejected all. Continue?")) 1075 1075 .setButtonIcons("save", "cancel") 1076 .showDialog().getValue() ;1077 });1076 .showDialog().getValue() 1077 ); 1078 1078 } 1079 1079
Note:
See TracChangeset
for help on using the changeset viewer.