Skip to content

Commit

Permalink
refactor: sonarcloud issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed May 7, 2024
1 parent f2cb03a commit 422d67e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private Map<String, String> buildHeadersMap(HttpServletRequest request) {

Enumeration<String> headerNames = request.getHeaderNames();
while (headerNames.hasMoreElements()) {
String key = (String) headerNames.nextElement();
String key = headerNames.nextElement();
String value = request.getHeader(key);
map.put(key, value);
}
Expand Down

0 comments on commit 422d67e

Please sign in to comment.