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