@@ -21,16 +21,16 @@ import { Statedatafilter } from './statedatafilter';
21
21
import { Transition } from './transition' ;
22
22
import {
23
23
normalizeActions ,
24
- normalizeEndIfObject ,
24
+ normalizeEnd ,
25
25
normalizeOnErrors ,
26
- normalizeTransitionIfObject ,
26
+ normalizeTransition ,
27
27
normalizeUsedForCompensation ,
28
28
overwriteActions ,
29
- overwriteEndIfObject ,
29
+ overwriteEnd ,
30
30
overwriteMetadata ,
31
31
overwriteOnErrors ,
32
32
overwriteStateDataFilter ,
33
- overwriteTransitionIfObject ,
33
+ overwriteTransition ,
34
34
setEndValueIfNoTransition ,
35
35
normalizeMode ,
36
36
overwriteTimeoutWithStateExecTimeout ,
@@ -48,12 +48,12 @@ export class Foreachstate {
48
48
const defaultModel = { type : 'foreach' , usedForCompensation : false , mode : 'parallel' } ;
49
49
Object . assign ( this , defaultModel , model ) ;
50
50
51
- overwriteEndIfObject ( this ) ;
51
+ overwriteEnd ( this ) ;
52
52
overwriteActions ( this ) ;
53
53
overwriteTimeoutWithStateExecTimeout ( this ) ;
54
54
overwriteStateDataFilter ( this ) ;
55
55
overwriteOnErrors ( this ) ;
56
- overwriteTransitionIfObject ( this ) ;
56
+ overwriteTransition ( this ) ;
57
57
overwriteMetadata ( this ) ;
58
58
}
59
59
@@ -134,10 +134,10 @@ export class Foreachstate {
134
134
normalize = ( ) : Foreachstate => {
135
135
const clone = new Foreachstate ( this ) ;
136
136
137
- normalizeEndIfObject ( clone ) ;
137
+ normalizeEnd ( clone ) ;
138
138
normalizeActions ( clone ) ;
139
139
normalizeOnErrors ( clone ) ;
140
- normalizeTransitionIfObject ( clone ) ;
140
+ normalizeTransition ( clone ) ;
141
141
normalizeUsedForCompensation ( clone , this . sourceModel ) ;
142
142
normalizeMode ( clone , this . sourceModel ) ;
143
143
setEndValueIfNoTransition ( clone ) ;
0 commit comments