Repository: flex-asjs Updated Branches: refs/heads/develop 0f802ac6a -> d6510866f
text should never be undefined. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/d6510866 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/d6510866 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/d6510866 Branch: refs/heads/develop Commit: d6510866f0765e4b49f9d9d83f4dbe64e2848d60 Parents: 0f802ac Author: Harbs <[email protected]> Authored: Sun Feb 5 23:25:42 2017 +0200 Committer: Harbs <[email protected]> Committed: Sun Feb 5 23:25:42 2017 +0200 ---------------------------------------------------------------------- .../src/main/flex/org/apache/flex/html/beads/models/TextModel.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d6510866/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/models/TextModel.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/models/TextModel.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/models/TextModel.as index eaf2cf4..c349ea6 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/models/TextModel.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/models/TextModel.as @@ -66,7 +66,7 @@ package org.apache.flex.html.beads.models _strand = value; } - private var _text:String; + private var _text:String = ""; /** * @copy org.apache.flex.core.ITextModel#text
