Fixed empty protobuf file
This commit is contained in:
parent
fb67b538c6
commit
d593e6f70e
1 changed files with 5 additions and 1 deletions
|
@ -66,7 +66,11 @@ public interface ClusterMapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
default Path resolvePath(String path) {
|
default Path resolvePath(String path) {
|
||||||
return Path.of(path);
|
if (path != null) {
|
||||||
|
return Path.of(path);
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue