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 29300200C24 for ; Thu, 9 Feb 2017 06:41:52 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 27F11160B6A; Thu, 9 Feb 2017 05:41:52 +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 7A800160B67 for ; Thu, 9 Feb 2017 06:41:51 +0100 (CET) Received: (qmail 30926 invoked by uid 500); 9 Feb 2017 05:41:50 -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 30908 invoked by uid 99); 9 Feb 2017 05:41:50 -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; Thu, 09 Feb 2017 05:41:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6CDD3DFD9E; Thu, 9 Feb 2017 05:41:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Thu, 09 Feb 2017 05:41:51 -0000 Message-Id: <6c12c8dcc24c44c8ad6ca695080b79c4@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] git commit: [flex-falcon] [refs/heads/dual] - ignore things with multiple qualifiers for now archived-at: Thu, 09 Feb 2017 05:41:52 -0000 ignore things with multiple qualifiers for now Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/72dd8a2a Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/72dd8a2a Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/72dd8a2a Branch: refs/heads/dual Commit: 72dd8a2a2a2b0bce973b0ea19e87ea3455502ba8 Parents: 1a1a410 Author: Alex Harui Authored: Tue Feb 7 20:07:42 2017 -0800 Committer: Alex Harui Committed: Tue Feb 7 20:07:42 2017 -0800 ---------------------------------------------------------------------- .../java/org/apache/flex/compiler/internal/targets/SWFTarget.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/72dd8a2a/compiler/src/main/java/org/apache/flex/compiler/internal/targets/SWFTarget.java ---------------------------------------------------------------------- diff --git a/compiler/src/main/java/org/apache/flex/compiler/internal/targets/SWFTarget.java b/compiler/src/main/java/org/apache/flex/compiler/internal/targets/SWFTarget.java index 59afb54..06f932a 100644 --- a/compiler/src/main/java/org/apache/flex/compiler/internal/targets/SWFTarget.java +++ b/compiler/src/main/java/org/apache/flex/compiler/internal/targets/SWFTarget.java @@ -468,6 +468,7 @@ public abstract class SWFTarget extends Target implements ISWFTarget { String base = name.getBaseName(); if (base == null) continue; + if (name.getQualifiers().length() != 1) continue; Namespace ns = name.getSingleQualifier(); if (ns == null) continue; String nsName = ns.getName(); @@ -526,6 +527,7 @@ public abstract class SWFTarget extends Target implements ISWFTarget { String base = name.getBaseName(); if (base == null) continue; + if (name.getQualifiers().length() != 1) continue; Namespace ns = name.getSingleQualifier(); if (ns == null) continue; String nsName = ns.getName();