Changeset 14833 in josm
- Timestamp:
- 2019-03-05T10:03:39+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/ValidatorListManagementDialog.java
r14828 r14833 118 118 if (answer == JOptionPane.YES_OPTION || answer == JOptionPane.NO_OPTION) { 119 119 OsmValidator.resetErrorList(); 120 tree.forEach((ignore, description) -> { 121 OsmValidator.addIgnoredError(ignore, description); 122 }); 120 tree.forEach(OsmValidator::addIgnoredError); 123 121 OsmValidator.saveIgnoredErrors(); 124 122 OsmValidator.initialize(); … … 200 198 } 201 199 202 private void deleteAction(JTree tree, TreePath[] paths) {200 private static void deleteAction(JTree tree, TreePath[] paths) { 203 201 for (TreePath path : paths) { 204 202 tree.clearSelection();
Note:
See TracChangeset
for help on using the changeset viewer.