MCPcopy Create free account
hub / github.com/davidgiven/luje / decode

Method decode

lib/java/net/URI.java:1602–1612  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

1600 }
1601
1602 private String decode(String s) {
1603 if (s == null) {
1604 return s;
1605 }
1606
1607 try {
1608 return URIEncoderDecoder.decode(s);
1609 } catch (UnsupportedEncodingException e) {
1610 throw new RuntimeException(e.toString());
1611 }
1612 }
1613
1614 /**
1615 * Returns the textual string representation of this URI instance using the

Callers 6

getAuthorityMethod · 0.95
getFragmentMethod · 0.95
getPathMethod · 0.95
getQueryMethod · 0.95
getSchemeSpecificPartMethod · 0.95
getUserInfoMethod · 0.95

Calls 2

decodeMethod · 0.95
toStringMethod · 0.65

Tested by

no test coverage detected