Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 29E4C106FF for ; Thu, 27 Feb 2014 15:44:02 +0000 (UTC) Received: (qmail 25218 invoked by uid 500); 27 Feb 2014 15:44:01 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 24583 invoked by uid 500); 27 Feb 2014 15:44:00 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 24106 invoked by uid 99); 27 Feb 2014 15:43:57 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Feb 2014 15:43:57 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 8CD3A92ED36; Thu, 27 Feb 2014 15:43:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: erikdebruin@apache.org To: commits@flex.apache.org Date: Thu, 27 Feb 2014 15:44:01 -0000 Message-Id: <8b065fd006d64557bf47bec7d6fe96a2@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [6/7] git commit: [flex-asjs] [refs/heads/develop] - Updated type annotation and member initialisation to allow for NULL, preventing the triggering of the new method for all components. Updated type annotation and member initialisation to allow for NULL, preventing the triggering of the new method for all components. Signed-off-by: Erik de Bruin Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/f37cf6b4 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/f37cf6b4 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/f37cf6b4 Branch: refs/heads/develop Commit: f37cf6b48f0449de83b9b6197d99daab5c917f18 Parents: b6a5965 Author: Erik de Bruin Authored: Thu Feb 27 13:22:18 2014 +0100 Committer: Erik de Bruin Committed: Thu Feb 27 16:43:38 2014 +0100 ---------------------------------------------------------------------- frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/f37cf6b4/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js index b426af6..d331fe2 100644 --- a/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js +++ b/frameworks/js/FlexJS/src/org/apache/flex/core/UIBase.js @@ -84,8 +84,9 @@ org.apache.flex.core.UIBase.prototype.createElement = function() { /** * @protected + * @type {?function()} */ -org.apache.flex.core.UIBase.prototype.finalizeElement = goog.nullFunction(); +org.apache.flex.core.UIBase.prototype.finalizeElement = null; /**