diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-12-16 14:01:57 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2015-12-17 11:01:55 -0800 |
commit | 24b8ff0faf7c59323d0171cdd825ca09e712aa1e (patch) | |
tree | f1350009e8e3aa03ab93b088619635991aeb989a /tools/aapt2/java/ProguardRules.cpp | |
parent | 7ff3ee19f4b831a526baf4b928d1ac172d070d82 (diff) |
AAPT2: Fix references to private parent
Change-Id: Id4697551b6c8cb6167f562de593006ae3c6158c0
Diffstat (limited to 'tools/aapt2/java/ProguardRules.cpp')
-rw-r--r-- | tools/aapt2/java/ProguardRules.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/java/ProguardRules.cpp b/tools/aapt2/java/ProguardRules.cpp index c0968545ad81..c610bb0f2ff2 100644 --- a/tools/aapt2/java/ProguardRules.cpp +++ b/tools/aapt2/java/ProguardRules.cpp @@ -227,14 +227,14 @@ bool collectProguardRules(const Source& source, xml::XmlResource* res, KeepSet* bool writeKeepSet(std::ostream* out, const KeepSet& keepSet) { for (const auto& entry : keepSet.mKeepSet) { for (const Source& source : entry.second) { - *out << "// Referenced at " << source << "\n"; + *out << "# Referenced at " << source << "\n"; } *out << "-keep class " << entry.first << " { <init>(...); }\n" << std::endl; } for (const auto& entry : keepSet.mKeepMethodSet) { for (const Source& source : entry.second) { - *out << "// Referenced at " << source << "\n"; + *out << "# Referenced at " << source << "\n"; } *out << "-keepclassmembers class * { *** " << entry.first << "(...); }\n" << std::endl; } |