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-compress.git

commit da804ec86587dbe5d3318211aa5ba04abeb7f7c1
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Dec 10 09:32:09 2024 -0500

    Use camel case
---
 .../apache/commons/compress/archivers/cpio/CpioArchiveEntry.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.java
 
b/src/main/java/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.java
index 6723190ad..3b82a0293 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/cpio/CpioArchiveEntry.java
@@ -181,7 +181,7 @@ public class CpioArchiveEntry implements CpioConstants, 
ArchiveEntry {
     private long chksum;
 
     /** Number of bytes in the file */
-    private long filesize;
+    private long fileSize;
 
     private long gid;
 
@@ -459,7 +459,7 @@ public class CpioArchiveEntry implements CpioConstants, 
ArchiveEntry {
         if (this.alignmentBoundary == 0) {
             return 0;
         }
-        final long size = this.filesize;
+        final long size = this.fileSize;
         final int remain = (int) (size % this.alignmentBoundary);
         if (remain > 0) {
             return this.alignmentBoundary - remain;
@@ -665,7 +665,7 @@ public class CpioArchiveEntry implements CpioConstants, 
ArchiveEntry {
      */
     @Override
     public long getSize() {
-        return this.filesize;
+        return this.fileSize;
     }
 
     /**
@@ -912,7 +912,7 @@ public class CpioArchiveEntry implements CpioConstants, 
ArchiveEntry {
         if (size < 0 || size > 0xFFFFFFFFL) {
             throw new IllegalArgumentException("Invalid entry size <" + size + 
">");
         }
-        this.filesize = size;
+        this.fileSize = size;
     }
 
     /**

Reply via email to