This is an automated email from the ASF dual-hosted git repository.
harbs pushed a commit to branch feature/validation
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/feature/validation by this
push:
new f1abd43 Fixed mistaken reference
f1abd43 is described below
commit f1abd43d1b8177308d581d5b7931015e31da6e98
Author: Harbs <[email protected]>
AuthorDate: Sun Oct 1 19:34:34 2017 +0300
Fixed mistaken reference
---
.../apache/flex/utils/validation/beads/SimpleResourceStringBead.as | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git
a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/validation/beads/SimpleResourceStringBead.as
b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/validation/beads/SimpleResourceStringBead.as
index 7537cdd..ab59668 100644
---
a/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/validation/beads/SimpleResourceStringBead.as
+++
b/frameworks/projects/Core/src/main/flex/org/apache/flex/utils/validation/beads/SimpleResourceStringBead.as
@@ -20,8 +20,8 @@ package org.apache.flex.utils.validation.beads
{
import org.apache.flex.core.IBead;
import org.apache.flex.core.IStrand;
- import org.apache.flex.utils.validation.CreditCardValidator;
import org.apache.flex.events.Event;
+ import org.apache.flex.core.Strand;
public class SimpleResourceStringBead implements IBead
{
@@ -30,15 +30,14 @@ package org.apache.flex.utils.validation.beads
}
- private var
_strand:org.apache.flex.utils.validation.CreditCardValidator;
+ private var _strand:Strand;
/**
* @flexjsignorecoercion HTMLElement
*/
public function set strand(value:IStrand):void
{
- _strand = value as CreditCardValidator;
+ _strand = value as Strand;
_strand.addEventListener("beadsAdded",applyResources);
-
}
private function applyResources(ev:Event):void
{
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].