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

commit ee26ef6db736ebd058f40438b739571c1dcf7ef5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jul 21 16:42:26 2024 -0400

    Better parameter name
---
 .../java/org/apache/commons/vfs2/provider/hdfs/HdfsFileObject.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/commons-vfs2-hdfs/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileObject.java
 
b/commons-vfs2-hdfs/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileObject.java
index 9ee2a47d..fa194e3d 100644
--- 
a/commons-vfs2-hdfs/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileObject.java
+++ 
b/commons-vfs2-hdfs/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileObject.java
@@ -55,14 +55,14 @@ public class HdfsFileObject extends 
AbstractFileObject<HdfsFileSystem> {
      * @param name FileName
      * @param fs HdfsFileSystem instance
      * @param hdfs Hadoop FileSystem instance
-     * @param p Path to the file in HDFS
+     * @param path Path to the file in HDFS
      */
     protected HdfsFileObject(final AbstractFileName name, final HdfsFileSystem 
fs, final FileSystem hdfs,
-            final Path p) {
+            final Path path) {
         super(name, fs);
         this.fs = fs;
         this.hdfs = hdfs;
-        this.path = p;
+        this.path = path;
     }
 
     /**

Reply via email to