Skip to content

Commit

Permalink
Update MockHttpServletRequest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bgprudhomme authored Aug 3, 2024
1 parent dd2a82d commit 4c66a6d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ public class MockHttpServletRequest implements HttpServletRequest {
private String requestURL = "http://example.org/path";
private final Map<String, List<String>> headers = new HashMap<>();

@Override
public Locale getLocale() {
return null;
}

@Override
public String getProtocolRequestId() {
return null;
Expand Down

0 comments on commit 4c66a6d

Please sign in to comment.