Changeset 20566 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-03-20T21:08:01+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/wmsplugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/wmsplugin/build.xml
r19415 r20566 28 28 29 29 30 <property name="commit.message" value=" Uses new constructor for plugin" />30 <property name="commit.message" value="filter control characters that are send to the consol and create morse code effect" /> 31 31 <property name="plugin.main.version" value="2830" /> 32 32 -
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.