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:
@@ -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'
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user