Repository: flex-falcon Updated Branches: refs/heads/develop fd115a7e9 -> cf9cc59b7
FLEX-35172 need quotes around url format Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/cf9cc59b Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/cf9cc59b Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/cf9cc59b Branch: refs/heads/develop Commit: cf9cc59b7f019ec97c2c96faefd4ef20ceb0708c Parents: fd115a7 Author: Alex Harui <[email protected]> Authored: Sun Nov 13 23:55:00 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Sun Nov 13 23:55:00 2016 -0800 ---------------------------------------------------------------------- .../internal/driver/js/flexjs/JSCSSCompilationSession.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/cf9cc59b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java ---------------------------------------------------------------------- diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java index c2b1c90..fe1c5e9 100644 --- a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java +++ b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java @@ -303,7 +303,7 @@ public class JSCSSCompilationSession extends CSSCompilationSession } else if (val instanceof CSSURLAndFormatPropertyValue) { - result.append(((CSSURLAndFormatPropertyValue)val).toString()); + result.append("\"" + ((CSSURLAndFormatPropertyValue)val).toString() + "\""); } else {
