Repository: flex-asjs Updated Branches: refs/heads/tlf 9f2195694 -> 9bf5b3096
Error.toString() is now okay. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/9bf5b309 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/9bf5b309 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/9bf5b309 Branch: refs/heads/tlf Commit: 9bf5b3096ef77d55241e9baef44096c893b53d5d Parents: 9f21956 Author: Harbs <[email protected]> Authored: Thu Apr 20 23:47:28 2017 -0400 Committer: Harbs <[email protected]> Committed: Thu Apr 20 23:47:28 2017 -0400 ---------------------------------------------------------------------- .../apache/flex/textLayout/conversion/BaseTextLayoutImporter.as | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/9bf5b309/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as index ee5423c..55a3a9b 100644 --- a/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as +++ b/frameworks/projects/TLF/src/main/flex/org/apache/flex/textLayout/conversion/BaseTextLayoutImporter.as @@ -92,8 +92,7 @@ package org.apache.flex.textLayout.conversion } catch (e:Error) { -//TODO for some reason toString() is causing a compiler error - // reportError(e.toString()); + reportError(e.toString()); } PropertyUtil.errorHandler = savedErrorHandler; return rslt;
