get rid of a few more warnings
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a8979ccd Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a8979ccd Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a8979ccd Branch: refs/heads/develop Commit: a8979ccdf8e8466d48eb79abaaf680f493d9ebeb Parents: 0ce42ef Author: Alex Harui <[email protected]> Authored: Fri Jun 6 14:33:05 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Fri Jun 6 14:33:05 2014 -0700 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js | 2 +- .../js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js | 1 + frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8979ccd/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js index fa1e9d4..884c11e 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/IValuesImpl.js @@ -47,7 +47,7 @@ org.apache.flex.core.IValuesImpl.prototype.FLEXJS_CLASS_INFO = * @param {string=} opt_state The psuedo-state if any for. * @param {Object=} opt_attrs The object with name value pairs that * might make a difference. - * @return {Object} The value. + * @return {?Object} The value. */ org.apache.flex.core.IValuesImpl.prototype.getValue = function(thisObject, valueName, opt_state, opt_attrs) {}; http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8979ccd/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js index d75663d..f0ff6a4 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/SimpleCSSValuesImpl.js @@ -159,6 +159,7 @@ org.apache.flex.core.SimpleCSSValuesImpl.prototype.getValue = * @param {Object=} opt_attrs The object with name value pairs that * might make a difference. * @return {Object} The value. + * @suppress {checkTypes} */ org.apache.flex.core.SimpleCSSValuesImpl.prototype.newInstance = function(thisObject, valueName, opt_state, opt_attrs) { http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a8979ccd/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js b/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js index 22b1dd9..3913f61 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/utils/EffectTimer.js @@ -24,6 +24,7 @@ goog.require('org.apache.flex.events.ValueEvent'); /** * @constructor * @extends {org.apache.flex.events.EventDispatcher} + * @suppress {checkTypes} */ org.apache.flex.utils.EffectTimer = function() { goog.base(this);
