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 <[email protected]>
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;
}
}