You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/11/15 07:28:24 UTC

[2/8] git commit: [flex-falcon] [refs/heads/develop] - fix css output

fix css output


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/00147b62
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/00147b62
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/00147b62

Branch: refs/heads/develop
Commit: 00147b62490e0e4df52024ca875aeb9d432b423d
Parents: 5354db8
Author: Alex Harui <ah...@apache.org>
Authored: Thu Nov 13 15:12:46 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Nov 13 15:12:46 2014 -0800

----------------------------------------------------------------------
 .../internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/00147b62/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java
index 6e62dbe..d4a613e 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/codegen/mxml/flexjs/MXMLFlexJSBlockWalker.java
@@ -106,7 +106,7 @@ public class MXMLFlexJSBlockWalker extends MXMLBlockWalker
             return;
         
         session.setKeepAllTypeSelectors(true);
-        encodedCSS += ((JSCSSCompilationSession)session).getEncodedCSS(flexProject, problems);
+        encodedCSS = ((JSCSSCompilationSession)session).getEncodedCSS(flexProject, problems);
     }
 
 }