Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Crawford <[email protected]>
  • Loading branch information
stephen-crawford committed Nov 15, 2023
1 parent 5fe7396 commit 147be07
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,8 @@ public void addHeader(String name, String value) {
List<String> header = headers.get(name);
if (header == null) {
header = new ArrayList<>();
System.out.println("Adding attribute header of " + value);
headers.put(name, header);
}
System.out.println("Adding header of " + value);
header.add(value);
}

Expand Down

0 comments on commit 147be07

Please sign in to comment.