HDFS-13261. Fix incorrect null value check. Contributed by Jianfei Jiang.
This commit is contained in:
parent
e840b4adf4
commit
3a0f4bc0d5
|
@ -223,7 +223,7 @@ public class ZoneReencryptionStatus {
|
|||
* a listReencryptionStatus call, for the crypto admin to consume.
|
||||
*/
|
||||
public void setZoneName(final String name) {
|
||||
Preconditions.checkNotNull(name == null);
|
||||
Preconditions.checkNotNull(name, "zone name cannot be null");
|
||||
zoneName = name;
|
||||
}
|
||||
|
||||
|
|
|
@ -145,7 +145,7 @@ public class AdminHelper {
|
|||
private final Command[] commands;
|
||||
|
||||
public HelpCommand(Command[] commands) {
|
||||
Preconditions.checkNotNull(commands != null);
|
||||
Preconditions.checkNotNull(commands, "commands cannot be null.");
|
||||
this.commands = commands;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue