This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
     new 40403d21 Use final
40403d21 is described below

commit 40403d218aec6859805c58857cc8869dee4e4a65
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jul 9 11:07:57 2024 -0400

    Use final
---
 .../commons/fileupload2/core/MockRequestContextTest.java     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java
 
b/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java
index e8a34f82..d461d479 100644
--- 
a/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java
+++ 
b/commons-fileupload2-core/src/test/java/org/apache/commons/fileupload2/core/MockRequestContextTest.java
@@ -142,12 +142,12 @@ public class MockRequestContextTest {
         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;

Reply via email to