Ticket #17525: 17525-reverter.patch
| File 17525-reverter.patch, 925 bytes (added by , 7 years ago) |
|---|
-
src/reverter/RevertChangesetTask.java
24 24 import org.openstreetmap.josm.gui.progress.swing.PleaseWaitProgressMonitor; 25 25 import org.openstreetmap.josm.gui.util.GuiHelper; 26 26 import org.openstreetmap.josm.io.OsmTransferException; 27 import org.openstreetmap.josm.tools.JosmRuntimeException; 27 28 import org.openstreetmap.josm.tools.Logging; 28 29 import org.openstreetmap.josm.tools.UserCancelException; 29 30 … … 105 106 Logging.warn("Revert canceled"); 106 107 Logging.trace(e); 107 108 return; 109 } catch (Exception e) { 110 Logging.error(e); 111 throw new JosmRuntimeException(e.getCause()); 108 112 } 109 113 } 110 114 if (!allcmds.isEmpty()) {
