Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the inconsistent uri issue for set breakpoint request #84

Merged
merged 3 commits into from
Oct 18, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix review comments
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
  • Loading branch information
testforstephen committed Oct 18, 2017
commit be5dcf23a1482dae891f3ee32816872f88104f31
Original file line number Diff line number Diff line change
Expand Up @@ -224,14 +224,14 @@ public static String getSHA256HexDigest(String content) {
}

/**
* decode the uri string.
* Decode the uri string.
* @param uri
* the uri string
* @return the decoded uri
*/
public static String decodeURIComponent(String uri) {
try {
return URLDecoder.decode(uri, "UTF-8");
return URLDecoder.decode(uri, StandardCharsets.UTF_8.name());
} catch (UnsupportedEncodingException e) {
return uri;
}
Expand Down