Bumping versions

This commit is contained in:
buildmaster
2020-12-11 00:20:25 +00:00
parent e7cafc162b
commit 68fd288dfc
2 changed files with 3 additions and 3 deletions

View File

@@ -95,8 +95,7 @@ abstract class PatternValueDslProperty<T extends DslProperty> implements RegexCr
@Override
public T aBoolean() {
return createAndValidateProperty(RegexPatterns.TRUE_OR_FALSE,
this.random.nextBoolean());
return createAndValidateProperty(RegexPatterns.TRUE_OR_FALSE, this.random.nextBoolean());
}
@Override

View File

@@ -123,7 +123,8 @@ class WireMockResponseStubStrategy extends BaseWireMockStubStrategy {
}
Closure parsingClosureForContentType() {
return contractMetadata.getDefinedOutputStubContentType().contains("/stream") ? Closure.IDENTITY : MapConverter.JSON_PARSING_CLOSURE;
return contractMetadata.getDefinedOutputStubContentType().contains("/stream") ? Closure.IDENTITY
: MapConverter.JSON_PARSING_CLOSURE;
}
private void appendResponseDelayTime(ResponseDefinitionBuilder builder) {