You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2019/06/28 19:59:30 UTC

[royale-compiler] branch develop updated: GoogDepsWriter: fixed duplicate single quotes added in yesterday's commit

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new d220af3  GoogDepsWriter: fixed duplicate single quotes added in yesterday's commit
d220af3 is described below

commit d220af3d4167a29c16d209809281f92fd388ff5d
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Fri Jun 28 12:59:19 2019 -0700

    GoogDepsWriter: fixed duplicate single quotes added in yesterday's commit
---
 .../org/apache/royale/compiler/internal/graph/GoogDepsWriter.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/graph/GoogDepsWriter.java b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/graph/GoogDepsWriter.java
index 728734c..bfb08cf 100644
--- a/compiler-jx/src/main/java/org/apache/royale/compiler/internal/graph/GoogDepsWriter.java
+++ b/compiler-jx/src/main/java/org/apache/royale/compiler/internal/graph/GoogDepsWriter.java
@@ -1494,9 +1494,9 @@ public class GoogDepsWriter {
 			{
 				builder.append(", ");
 			}
-			builder.append("''");
+			builder.append("'");
 			builder.append(dep);
-			builder.append("''");
+			builder.append("'");
 			hasDeps = true;
 		}
 	}