@@ -57,22 +57,22 @@ component extends="BaseValidator" accessors="true" singleton {
57
57
58
58
// check data element value and return error if it is not simple value.
59
59
if ( ! isSimpleValue ( arguments .targetValue ) ) {
60
- var args = {
61
- message : " The '#arguments .field #' value is not a Simple value" ,
62
- field : arguments .field ,
63
- validationType : getName (),
64
- rejectedValue : ( isSimpleValue ( arguments .targetValue ) ? arguments .targetValue : " " ),
65
- validationData : arguments .validationData
66
- };
67
- var error = validationResult
68
- .newError ( argumentCollection = args )
69
- .setErrorMetadata ( {
70
- " operation" : operation ,
71
- " operationValue" : operationValue
72
- } );
73
- validationResult .addError ( error );
74
- return false ;
75
- }
60
+ var args = {
61
+ message : " The '#arguments .field #' value is not a Simple value" ,
62
+ field : arguments .field ,
63
+ validationType : getName (),
64
+ rejectedValue : ( isSimpleValue ( arguments .targetValue ) ? arguments .targetValue : " " ),
65
+ validationData : arguments .validationData
66
+ };
67
+ var error = validationResult
68
+ .newError ( argumentCollection = args )
69
+ .setErrorMetadata ( {
70
+ " operation" : operation ,
71
+ " operationValue" : operationValue
72
+ } );
73
+ validationResult .addError ( error );
74
+ return false ;
75
+ }
76
76
77
77
var r = false ;
78
78
if ( ! isNull ( arguments .targetValue ) ) {
0 commit comments