You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2014/08/01 13:00:51 UTC

[30/33] git commit: [flex-falcon] [refs/heads/develop] - Remove throw of 'Embed not found', for now.

Remove throw of 'Embed not found', for now.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


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

Branch: refs/heads/develop
Commit: 92caf9b640572005d61c1afb1cd4d05da9f3f5cc
Parents: e58fa73
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Wed Jul 30 14:35:02 2014 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Aug 1 12:59:16 2014 +0200

----------------------------------------------------------------------
 .../internal/driver/js/flexjs/JSCSSCompilationSession.java       | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/92caf9b6/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java
----------------------------------------------------------------------
diff --git a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java
index b063168..44cb3a0 100644
--- a/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java
+++ b/compiler.jx/src/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java
@@ -37,7 +37,6 @@ import org.apache.flex.compiler.internal.css.CSSNumberPropertyValue;
 import org.apache.flex.compiler.internal.css.CSSRgbColorPropertyValue;
 import org.apache.flex.compiler.internal.css.CSSStringPropertyValue;
 import org.apache.flex.compiler.internal.css.codegen.CSSCompilationSession;
-import org.apache.flex.compiler.problems.CSSCodeGenProblem;
 import org.apache.flex.compiler.problems.ICompilerProblem;
 import org.apache.flex.compiler.projects.ICompilerProject;
 
@@ -253,9 +252,12 @@ public class JSCSSCompilationSession extends CSSCompilationSession
                 }
                 else if ("Embed".equals(functionCall.name))
                 {
+                    // TODO: implement me
+                    /*
                     final ICompilerProblem e = new CSSCodeGenProblem(
                             new IllegalStateException("Unable to find compilation unit for " + functionCall));
                     problems.add(e);
+                    */
                 }
                 else
                 {