Make if statement more idiomatic
parent
2c59f95e87
commit
42007307be
|
@ -182,8 +182,10 @@ pub const CacheHash = struct {
|
||||||
if (file_path.len == 0) {
|
if (file_path.len == 0) {
|
||||||
return error.InvalidFormat;
|
return error.InvalidFormat;
|
||||||
}
|
}
|
||||||
if (cache_hash_file.path != null and !mem.eql(u8, file_path, cache_hash_file.path.?)) {
|
if (cache_hash_file.path) |p| {
|
||||||
return error.InvalidFormat;
|
if (!mem.eql(u8, file_path, p)) {
|
||||||
|
return error.InvalidFormat;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cache_hash_file.path == null) {
|
if (cache_hash_file.path == null) {
|
||||||
|
|
Loading…
Reference in New Issue