mirror of
https://github.com/gbevin/urlencoder.git
synced 2025-04-26 07:47:13 -07:00
Activated code coverage
This commit is contained in:
parent
3208aa4cca
commit
b2a313e027
2 changed files with 8 additions and 4 deletions
|
@ -32,10 +32,6 @@ public abstract class UrlEncoder {
|
|||
UNRESERVED_URI_CHARS = unreserved;
|
||||
}
|
||||
|
||||
private UrlEncoder() {
|
||||
throw new IllegalStateException("UrlEncoder shouldn't be instantiated");
|
||||
}
|
||||
|
||||
private static void appendUrlEncodedByte(StringBuilder out, int ch) {
|
||||
out.append("%");
|
||||
appendUrlEncodedDigit(out, ch >> 4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue