Fixed empty protobuf file

This commit is contained in:
German Osin 2020-11-12 14:16:43 +03:00
parent fb67b538c6
commit d593e6f70e

View file

@ -66,7 +66,11 @@ public interface ClusterMapper {
}
default Path resolvePath(String path) {
return Path.of(path);
if (path != null) {
return Path.of(path);
} else {
return null;
}
}
}