Opened 19 years ago
Last modified 19 years ago
#114 closed defect
PleaseWaitRunnable keeps showing previous error message — at Initial Version
| Reported by: | Owned by: | imi | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | Core | Version: | latest |
| Keywords: | Cc: |
Description
After an unsuccesful PleaseWaitDialog, last error message is shown even with succesful dialogs.
Follogin patch fixes it.
Index: C:/JOSM/josm/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java
===================================================================
--- C:/JOSM/josm/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java (revision 203)
+++ C:/JOSM/josm/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java (working copy)
@@ -78,6 +78,7 @@
}
+ errorMessage = null;
realRun();
} catch (SAXException x) {
x.printStackTrace();


