Fixed the way we clone bodies in response

without this change we are not doing a deep copy of a collection thus we're accidentaly removing the original value
with this change we ensure that a deep copy is made

fixes #229
This commit is contained in:
Marcin Grzejszczak
2017-02-22 13:25:00 +01:00
parent 60e35be082
commit 19120f55fc
5 changed files with 65 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ import groovy.transform.CompileStatic
* @since 1.0.0
*/
@CompileStatic
class ExecutionProperty {
class ExecutionProperty implements Serializable {
private static final String PLACEHOLDER_VALUE = '$it'

View File

@@ -24,7 +24,7 @@ import groovy.transform.CompileStatic
* @since 1.0.0
*/
@CompileStatic
class OptionalProperty {
class OptionalProperty implements Serializable {
final Object value
OptionalProperty(Object value) {