You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/12/11 06:59:14 UTC

[royale-asjs] 03/03: remove the one Pashmina put in

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

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

commit a7241383c65fa3b324e7f0b7a496e37c4d357604
Author: Alex Harui <ah...@apache.org>
AuthorDate: Tue Dec 10 22:58:49 2019 -0800

    remove the one Pashmina put in
---
 .../src/main/royale/spark/components/TextInput.as       | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/TextInput.as b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/TextInput.as
index db97881..d8ab318 100644
--- a/frameworks/projects/SparkRoyale/src/main/royale/spark/components/TextInput.as
+++ b/frameworks/projects/SparkRoyale/src/main/royale/spark/components/TextInput.as
@@ -325,23 +325,6 @@ public class TextInput extends SkinnableTextBase
         dispatchEvent(new Event("textChanged"));
 	dispatchEvent(new FlexEvent(FlexEvent.VALUE_COMMIT));
     }
-
-    // BEGIN - this code shouldn't exist once SkinnableTextBase is fixed
-    /**
-     *  @private
-     */
-    override public function get text():String
-    {
-        COMPILE::SWF
-		{
-			return ITextModel(model).text;
-		}
-		COMPILE::JS
-		{
-			return (element as HTMLInputElement).value;
-		}
-    }
-    // END
 	
     private var _editable:Boolean = true;
     override public function get editable():Boolean{