Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[SMALLFIX] Supply the name of variable to Preconditions.checkNotNull
Supply the name of variable to Preconditions.checkNotNull in
alluxio/core/server/master/src/main/java/alluxio/master/file/FileSystemMasterWorkerServiceHandler.java

pr-link: #8968
change-id: cid-304e3b26c53e83242c765e715084409825ed26c0
  • Loading branch information
Tianye-Zheng authored and alluxio-bot committed May 12, 2019
1 parent b461b44 commit b187e3c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,7 @@ public final class FileSystemMasterWorkerServiceHandler
* @param fileSystemMaster the {@link FileSystemMaster} the handler uses internally
*/
public FileSystemMasterWorkerServiceHandler(FileSystemMaster fileSystemMaster) {
Preconditions.checkNotNull(fileSystemMaster);
Preconditions.checkNotNull(fileSystemMaster, "fileSystemMaster");
mFileSystemMaster = fileSystemMaster;
}

Expand Down

0 comments on commit b187e3c

Please sign in to comment.