Changeset 20566 in osm for applications/editors/josm/plugins/wmsplugin/src
- Timestamp:
- 2010-03-20T21:08:01+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified applications/editors/josm/plugins/wmsplugin/src/wmsplugin/WMSGrabber.java ΒΆ
r19417 r20566 210 210 String line = null; 211 211 while( (line = br.readLine()) != null) { 212 exception.append(line); 212 // filter non-ASCII characters and control characters 213 exception.append(line.replaceAll("[^\\p{Print}]", "")); 213 214 exception.append('\n'); 214 215 }
Note:
See TracChangeset
for help on using the changeset viewer.