Fixed NPE

This commit is contained in:
Marcin Grzejszczak
2019-04-16 20:24:05 +04:00
parent 069059d412
commit 46f3dabf3b

View File

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