Changeset 9196 in josm for trunk


Ignore:
Timestamp:
2015-12-28T14:35:57+01:00 (8 years ago)
Author:
Don-vip
Message:

remove another warning :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r9191 r9196  
    12841284            return URLEncoder.encode(s, enc);
    12851285        } catch (UnsupportedEncodingException e) {
    1286             throw new IllegalStateException();
     1286            throw new IllegalStateException(e);
    12871287        }
    12881288    }
     
    13041304            return URLDecoder.decode(s, enc);
    13051305        } catch (UnsupportedEncodingException e) {
    1306             throw new IllegalStateException();
     1306            throw new IllegalStateException(e);
    13071307        }
    13081308    }
Note: See TracChangeset for help on using the changeset viewer.