diff options
Diffstat (limited to 'tools/aapt2/ResourceUtils.h')
-rw-r--r-- | tools/aapt2/ResourceUtils.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/aapt2/ResourceUtils.h b/tools/aapt2/ResourceUtils.h index a8a312005e4e..f77766ee9061 100644 --- a/tools/aapt2/ResourceUtils.h +++ b/tools/aapt2/ResourceUtils.h @@ -276,10 +276,8 @@ class StringBuilder { // single quotations can be used without escaping them. explicit StringBuilder(bool preserve_spaces = false); - // Appends a chunk of text. If preserve_spaces is true, whitespace removal is not performed, and - // single quotations can be used without escaping them for this append. Otherwise, the - // StringBuilder will behave as it was constructed. - StringBuilder& AppendText(const std::string& text, bool preserve_spaces = false); + // Appends a chunk of text. + StringBuilder& AppendText(const std::string& text); // Starts a Span (tag) with the given name. The name is expected to be of the form: // "tag_name;attr1=value;attr2=value;" |