You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/11/20 15:21:28 UTC

svn commit: r1847020 - /commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java

Author: ggregory
Date: Tue Nov 20 15:21:28 2018
New Revision: 1847020

URL: http://svn.apache.org/viewvc?rev=1847020&view=rev
Log:
Better param name.

Modified:
    commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java

Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java?rev=1847020&r1=1847019&r2=1847020&view=diff
==============================================================================
--- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java (original)
+++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileObject.java Tue Nov 20 15:21:28 2018
@@ -94,13 +94,13 @@ public abstract class AbstractFileObject
     /**
      *
      * @param name the file name - muse be an instance of {@link AbstractFileName}
-     * @param fs the file system
+     * @param fileSystem the file system
      * @throws ClassCastException if {@code name} is not an instance of {@link AbstractFileName}
      */
-    protected AbstractFileObject(final AbstractFileName name, final AFS fs) {
+    protected AbstractFileObject(final AbstractFileName name, final AFS fileSystem) {
         this.fileName = name;
-        this.fileSystem = fs;
-        fs.fileObjectHanded(this);
+        this.fileSystem = fileSystem;
+        fileSystem.fileObjectHanded(this);
     }
 
     /**