Fixed NPE

This commit is contained in:
Marcin Grzejszczak
2019-04-16 20:24:05 +04:00
parent c2978ed7d2
commit 526092686c

View File

@@ -211,6 +211,9 @@ public class StubRunnerOptions {
}
public String getStubRepositoryRootAsString() {
if (this.stubRepositoryRoot == null) {
return "";
}
try {
return this.stubRepositoryRoot.getURI().toString();
}