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

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

commit c1d2c70544fccea266a237d472917d8324edad45
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Aug 25 11:39:22 2024 -0400

    Remove redundant keywords
---
 src/main/java/org/apache/commons/fileupload/MultipartStream.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/MultipartStream.java 
b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
index e004dba9..7bb15602 100644
--- a/src/main/java/org/apache/commons/fileupload/MultipartStream.java
+++ b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
@@ -782,10 +782,10 @@ public class MultipartStream {
      */
     protected int findSeparator() {
 
-        int bufferPos = this.head;
+        int bufferPos = head;
         int tablePos = 0;
 
-        while (bufferPos < this.tail) {
+        while (bufferPos < tail) {
             while (tablePos >= 0 && buffer[bufferPos] != boundary[tablePos]) {
                 tablePos = boundaryTable[tablePos];
             }

Reply via email to