Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9D9C0200C75 for ; Sun, 21 May 2017 18:37:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9C320160BDA; Sun, 21 May 2017 16:37:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EDADA160BBC for ; Sun, 21 May 2017 18:37:05 +0200 (CEST) Received: (qmail 15487 invoked by uid 500); 21 May 2017 16:37:05 -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 15468 invoked by uid 99); 21 May 2017 16:37:05 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 May 2017 16:37:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D394BDFFB5; Sun, 21 May 2017 16:37:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jmclean@apache.org To: commits@flex.apache.org Date: Sun, 21 May 2017 16:37:05 -0000 Message-Id: <214d534e288548b9a91828fee8cb5283@git.apache.org> In-Reply-To: <899986d209944fda8fcb770a9bcd619d@git.apache.org> References: <899986d209944fda8fcb770a9bcd619d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [02/10] git commit: [flex-asjs] [refs/heads/develop] - add missing semicolons archived-at: Sun, 21 May 2017 16:37:06 -0000 add missing semicolons Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/004d2044 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/004d2044 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/004d2044 Branch: refs/heads/develop Commit: 004d2044bfa04ed15f65cd66e98f0f43a14b8cfd Parents: 47ddad3 Author: Justin Mclean Authored: Sun May 21 06:50:47 2017 +1000 Committer: Justin Mclean Committed: Sun May 21 06:50:47 2017 +1000 ---------------------------------------------------------------------- .../main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/004d2044/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as index d7315f2..391d54d 100644 --- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as +++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/SimpleCSSValuesImpl.as @@ -665,7 +665,7 @@ package org.apache.flex.core "fontSize" : 1, "fontStyle" : 1, "textAlign" : 1 - } + }; /** * The styles that apply to each UI widget @@ -679,7 +679,7 @@ package org.apache.flex.core 'fontWeight': 1, 'fontSize': 1, 'fontStyle': 1 - } + }; /** @@ -690,7 +690,7 @@ package org.apache.flex.core 'backgroundColor': 1, 'borderColor': 1, 'color': 1 - } + }; /** * The styles that can use raw numbers @@ -698,7 +698,7 @@ package org.apache.flex.core COMPILE::JS public static var numericStyles:Object = { 'fontWeight': 1 - } + }; /** @@ -707,7 +707,7 @@ package org.apache.flex.core COMPILE::JS public static var skipStyles:Object = { 'constructor': 1 - } + };