diff options
author | Sergio Giro <sgiro@google.com> | 2015-09-30 15:28:30 +0100 |
---|---|---|
committer | Sergio Giro <sgiro@google.com> | 2015-09-30 15:42:02 +0100 |
commit | 282efae9c3d14ca2641e5fea223cb1be204feff1 (patch) | |
tree | 4c2dfa576e743d3cf7780c017ca9757a95a2e1a2 /libutils/String8.cpp | |
parent | fca4821e05f1d4684185b559d177ffde6937bf61 (diff) |
system/core: remove methods returning SharedBuffer in String8, String16
Towards deprecation of SharedBuffer
Change-Id: I3069837db32837bcc0f5d8f1118ccd502c9070dc
Diffstat (limited to 'libutils/String8.cpp')
-rw-r--r-- | libutils/String8.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libutils/String8.cpp b/libutils/String8.cpp index 5e8552049..81bfccf79 100644 --- a/libutils/String8.cpp +++ b/libutils/String8.cpp @@ -217,11 +217,6 @@ size_t String8::length() const return SharedBuffer::sizeFromData(mString)-1; } -const SharedBuffer* String8::sharedBuffer() const -{ - return SharedBuffer::bufferFromData(mString); -} - String8 String8::format(const char* fmt, ...) { va_list args; |