Skip to content

Commit

Permalink
> remove Block Char and replaced with unicode
Browse files Browse the repository at this point in the history
Ashok-Varma committed Dec 21, 2018

Verified

This commit was signed with the committer’s verified signature.
luehm Alex Luehm
1 parent b1662e0 commit 1b10b8c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -383,7 +383,7 @@ private List<HttpHeader> toHttpHeaderList(@NonNull Headers headers) {
List<HttpHeader> httpHeaders = new ArrayList<>();
for (int i = 0, count = headers.size(); i < count; i++) {
if (headersToRedact.contains(headers.name(i))) {
httpHeaders.add(new HttpHeader(headers.name(i), "██"));
httpHeaders.add(new HttpHeader(headers.name(i), "\u2588\u2588\u2588\u2588"));
} else {
httpHeaders.add(new HttpHeader(headers.name(i), headers.value(i)));
}

0 comments on commit 1b10b8c

Please sign in to comment.