You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2019/03/26 00:22:44 UTC

[royale-asjs] branch develop updated: jewel-validator: fix compilation warning

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new c4d8c7b  jewel-validator: fix compilation warning
c4d8c7b is described below

commit c4d8c7bf4639b79b253be8c40d7804e29e096da8
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Tue Mar 26 01:22:37 2019 +0100

    jewel-validator: fix compilation warning
---
 .../main/royale/org/apache/royale/jewel/beads/validators/Validator.as | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/validators/Validator.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/validators/Validator.as
index 78d08d0..2448b68 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/validators/Validator.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/validators/Validator.as
@@ -425,10 +425,10 @@ package org.apache.royale.jewel.beads.validators
 			var hp:Point = PointUtils.localToGlobal(new Point(0,0), _host);
 			var pt:Point;
 
+			var arrowclass:String = "";
 			// remove a previous arrow position
-			_errorTip.removeClass(arrowclass);
+			//_errorTip.removeClass(arrowclass);
 
-			var arrowclass:String = "";
 			if (_xPos == LEFT) {
 				xFactor = Number.POSITIVE_INFINITY;
 				arrowclass = "left-";