Changeset 9621 in josm for trunk/src/org/openstreetmap/josm/gui/preferences
- Timestamp:
- 2016-01-25T00:36:01+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreference.java
r9616 r9621 98 98 Collection<PluginInformation> downloaded = task.getDownloadedPlugins(); 99 99 Collection<PluginInformation> failed = task.getFailedPlugins(); 100 Exception exception = task.getLastException(); 100 101 StringBuilder sb = new StringBuilder(); 101 102 if (!downloaded.isEmpty()) { … … 124 125 } 125 126 sb.append("</ul>"); 127 } 128 if (exception != null) { 129 // Same i18n string in ExceptionUtil.explainBadRequest() 130 sb.append(tr("<br>Error message(untranslated): {0}", exception.getMessage())); 126 131 } 127 132 return sb.toString();
Note:
See TracChangeset
for help on using the changeset viewer.