@@ -24,18 +24,18 @@ import { Transition } from './transition';
2424import {
2525 cleanSourceModelProperty ,
2626 normalizeAction ,
27- normalizeEndIfObject ,
27+ normalizeEnd ,
2828 normalizeOnErrors ,
29- normalizeTransitionIfObject ,
29+ normalizeTransition ,
3030 normalizeUsedForCompensation ,
3131 overwriteAction ,
32- overwriteEndIfObject ,
32+ overwriteEnd ,
3333 overwriteEventDataFilter ,
3434 overwriteMetadata ,
3535 overwriteOnErrors ,
3636 overwriteStateDataFilter ,
3737 overwriteTimeoutWithStateExecTimeout ,
38- overwriteTransitionIfObject ,
38+ overwriteTransition ,
3939 setEndValueIfNoTransition ,
4040} from './utils' ;
4141import { ActionExecTimeout , EventTimeout } from './types' ;
@@ -55,8 +55,8 @@ export class Callbackstate {
5555 overwriteEventDataFilter ( this ) ;
5656 overwriteStateDataFilter ( this ) ;
5757 overwriteOnErrors ( this ) ;
58- overwriteTransitionIfObject ( this ) ;
59- overwriteEndIfObject ( this ) ;
58+ overwriteTransition ( this ) ;
59+ overwriteEnd ( this ) ;
6060 overwriteMetadata ( this ) ;
6161 }
6262
@@ -127,8 +127,8 @@ export class Callbackstate {
127127
128128 normalizeAction ( clone ) ;
129129 normalizeOnErrors ( clone ) ;
130- normalizeTransitionIfObject ( clone ) ;
131- normalizeEndIfObject ( clone ) ;
130+ normalizeTransition ( clone ) ;
131+ normalizeEnd ( clone ) ;
132132 normalizeUsedForCompensation ( clone , this . sourceModel ) ;
133133 setEndValueIfNoTransition ( clone ) ;
134134
0 commit comments