diff options
author | Adam Lesinski <adamlesinski@google.com> | 2016-03-03 15:39:50 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2016-03-04 20:06:05 -0800 |
commit | 74605cd40256ca75b44cc3182eeeb886c92d737c (patch) | |
tree | aeaba146e014328caa3eafc257b3c6bad73bb53e /tools/aapt2/java/ClassDefinitionWriter.h | |
parent | 626a69f34536d01db0847df0051199beaecce060 (diff) |
AAPT2: Emit proper doclava comments in R.java
Bug:25958912
Change-Id: I663f2eb5bd54e3c3288ce9bc186c928f0a014f93
Diffstat (limited to 'tools/aapt2/java/ClassDefinitionWriter.h')
-rw-r--r-- | tools/aapt2/java/ClassDefinitionWriter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/java/ClassDefinitionWriter.h b/tools/aapt2/java/ClassDefinitionWriter.h index 04e1274c3a97..cf92c9aa6f89 100644 --- a/tools/aapt2/java/ClassDefinitionWriter.h +++ b/tools/aapt2/java/ClassDefinitionWriter.h @@ -65,7 +65,7 @@ public: << "String " << name << "=\"" << val << "\";\n"; } - void addResourceMember(const StringPiece16& name, AnnotationProcessor* processor, + void addResourceMember(const StringPiece& name, AnnotationProcessor* processor, const ResourceId id) { ensureClassDeclaration(); if (processor) { @@ -76,7 +76,7 @@ public: } template <typename Iterator, typename FieldAccessorFunc> - void addArrayMember(const StringPiece16& name, AnnotationProcessor* processor, + void addArrayMember(const StringPiece& name, AnnotationProcessor* processor, const Iterator begin, const Iterator end, FieldAccessorFunc f) { ensureClassDeclaration(); if (processor) { |