suppress instanceof warning in Core
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/bd2dde05 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/bd2dde05 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/bd2dde05 Branch: refs/heads/spark Commit: bd2dde05481d4fe2a6e39869d0f1c909c68055ae Parents: f88b37a Author: Alex Harui <[email protected]> Authored: Wed May 25 12:37:39 2016 -0700 Committer: Alex Harui <[email protected]> Committed: Thu May 26 16:04:24 2016 -0700 ---------------------------------------------------------------------- .../FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml | 3 +++ frameworks/projects/Core/src/main/config/compile-as-config.xml | 3 +++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bd2dde05/frameworks/js/FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml b/frameworks/js/FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml index 55229de..d710846 100644 --- a/frameworks/js/FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml +++ b/frameworks/js/FlexJS/projects/CoreJS/src/main/config/compile-js-config.xml @@ -56,6 +56,9 @@ </source-path> <warn-no-constructor>false</warn-no-constructor> + + <!-- Use of the instanceof operator. --> + <warn-instance-of-changes>false</warn-instance-of-changes> </compiler> <include-file> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bd2dde05/frameworks/projects/Core/src/main/config/compile-as-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/src/main/config/compile-as-config.xml b/frameworks/projects/Core/src/main/config/compile-as-config.xml index 1da99e3..76ff3a1 100644 --- a/frameworks/projects/Core/src/main/config/compile-as-config.xml +++ b/frameworks/projects/Core/src/main/config/compile-as-config.xml @@ -57,6 +57,9 @@ </source-path> <warn-no-constructor>false</warn-no-constructor> + + <!-- Use of the instanceof operator. --> + <warn-instance-of-changes>false</warn-instance-of-changes> </compiler> <include-file>
