Changeset 9191 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-12-28T11:47:56+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r9170 r9191 1284 1284 return URLEncoder.encode(s, enc); 1285 1285 } catch (UnsupportedEncodingException e) { 1286 Main.error(e); 1287 return null; 1286 throw new IllegalStateException(); 1288 1287 } 1289 1288 } … … 1305 1304 return URLDecoder.decode(s, enc); 1306 1305 } catch (UnsupportedEncodingException e) { 1307 Main.error(e); 1308 return null; 1306 throw new IllegalStateException(); 1309 1307 } 1310 1308 }
Note:
See TracChangeset
for help on using the changeset viewer.