Removed info about missing contracts

fixes #212
This commit is contained in:
Marcin Grzejszczak
2017-02-02 17:25:58 +01:00
parent e135e618ec
commit 7af3a75ac4

View File

@@ -234,10 +234,6 @@ class StubRunnerExecutor implements StubFinder {
this.stubServer = new StubServer(stubConfiguration, mappings, contracts, new NoOpHttpServerStub());
return;
}
if (contracts.isEmpty()) {
log.warn("There are no contracts in the published JAR. This is an unusual situation "
+ "that's why will start the server - maybe you know what you're doing...");
}
if (port != null && port >= 0) {
this.stubServer = new StubServer(stubConfiguration, mappings, contracts, new WireMockHttpServerStub(port));
}