Alluxio / Community

New Contributor Tasks for Alluxio
20 stars 38 forks source link

[SMALLFIX] Supply the name of variable to Preconditions.checkNotNull in alluxio/core/common/src/main/java/alluxio/master/MasterClientContextBuilder.java#MasterClientContextBuilder #458

Closed newnius closed 5 years ago

newnius commented 5 years ago

Replace

    mContext = Preconditions.checkNotNull(ctx);

with

    mContext = Preconditions.checkNotNull(ctx, "ctx");