Changeset 13415 in josm
- Timestamp:
- 2018-02-12T16:56:28+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/AddWMSLayerPanel.java
r13206 r13415 87 87 tr("WMS Error"), JOptionPane.ERROR_MESSAGE); 88 88 } catch (WMSImagery.WMSGetCapabilitiesException ex3) { 89 String incomingData = ex3.getIncomingData() .trim();89 String incomingData = ex3.getIncomingData() != null ? ex3.getIncomingData().trim() : ""; 90 90 String title = tr("WMS Error"); 91 91 StringBuilder message = new StringBuilder(tr("Could not parse WMS layer list."));
Note:
See TracChangeset
for help on using the changeset viewer.