Changeset 11686 in josm
- Timestamp:
- 2017-03-05T03:06:09+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/UploadPrimitivesTask.java
r11618 r11686 31 31 import org.openstreetmap.josm.gui.util.GuiHelper; 32 32 import org.openstreetmap.josm.io.ChangesetClosedException; 33 import org.openstreetmap.josm.io.MessageNotifier; 33 34 import org.openstreetmap.josm.io.OsmApi; 34 35 import org.openstreetmap.josm.io.OsmApiPrimitiveGoneException; … … 235 236 protected void realRun() { 236 237 try { 238 MessageNotifier.stop(); 237 239 uploadloop: while (true) { 238 240 try { … … 293 295 } else { 294 296 lastException = e; 297 } 298 } finally { 299 if (MessageNotifier.PROP_NOTIFIER_ENABLED.get()) { 300 MessageNotifier.start(); 295 301 } 296 302 }
Note:
See TracChangeset
for help on using the changeset viewer.