Skip to content

Commit

Permalink
Better variable naming in UnderFileSystemFactory.java
Browse files Browse the repository at this point in the history
  • Loading branch information
apc999 committed Apr 27, 2015
1 parent 529c57c commit 1e5ddb2
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -27,12 +27,12 @@ public interface UnderFileSystemFactory {
* *
* @param path File path * @param path File path
* @param tachyonConf Tachyon configuration * @param tachyonConf Tachyon configuration
* @param conf Optional configuration object for the UFS, may be null * @param ufsConf Optional configuration object for the UFS, may be null
* @return Client * @return Client
* @throws IllegalArgumentException Thrown if this factory does not support clients for the given * @throws IllegalArgumentException Thrown if this factory does not support clients for the given
* path or if the configuration provided is insufficient to create a client * path or if the configuration provided is insufficient to create a client
*/ */
UnderFileSystem create(String path, TachyonConf tachyonConf, Object conf); UnderFileSystem create(String path, TachyonConf tachyonConf, Object ufsConf);


/** /**
* Gets whether this factory supports the given path and thus whether calling the * Gets whether this factory supports the given path and thus whether calling the
Expand Down

0 comments on commit 1e5ddb2

Please sign in to comment.