Skip to content

Commit

Permalink
Use final
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 9, 2024
1 parent e1ae2a1 commit 40403d2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ private static final class MockRequestContext extends AbstractRequestContext<Obj
private final String contentType;
private final InputStream inputStream;

private MockRequestContext(Function<String, String> contentLengthString,
LongSupplier contentLengthDefault,
Object request,
String characterEncoding,
String contentType,
InputStream inputStream) {
private MockRequestContext(final Function<String, String> contentLengthString,
final LongSupplier contentLengthDefault,
final Object request,
final String characterEncoding,
final String contentType,
final InputStream inputStream) {
super(contentLengthString, contentLengthDefault, request);
this.characterEncoding = characterEncoding;
this.contentType = contentType;
Expand Down

0 comments on commit 40403d2

Please sign in to comment.