You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2017/12/22 06:44:32 UTC

[royale-compiler] 01/02: exclude-css didn't seem to work because we resolved swc references as files

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit 75f2e925d4e01932ad04aed05eff3ee36274019b
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Dec 21 22:42:46 2017 -0800

    exclude-css didn't seem to work because we resolved swc references as files
---
 .../src/main/java/org/apache/royale/compiler/config/Configuration.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
index 57d781c..226b7e6 100644
--- a/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
+++ b/compiler-common/src/main/java/org/apache/royale/compiler/config/Configuration.java
@@ -3153,8 +3153,7 @@ public class Configuration
     @RoyaleOnly
     public void setExcludeDefaultsCSSFiles(ConfigurationValue cv, List<String> paths) throws CannotOpen
     {
-        final ImmutableList<String> resolved = resolvePathsStrict(ImmutableList.copyOf(paths), cv, true);
-        for (final String path : resolved)
+        for (final String path : paths)
         {
             excludeDefaultsCSSFiles.addFirst(path);
         }

-- 
To stop receiving notification emails like this one, please contact
"commits@royale.apache.org" <co...@royale.apache.org>.