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/String16.cpp | |
parent | fca4821e05f1d4684185b559d177ffde6937bf61 (diff) |
system/core: remove methods returning SharedBuffer in String8, String16
Towards deprecation of SharedBuffer
Change-Id: I3069837db32837bcc0f5d8f1118ccd502c9070dc
Diffstat (limited to 'libutils/String16.cpp')
-rw-r--r-- | libutils/String16.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libutils/String16.cpp b/libutils/String16.cpp index 67be9d8fa..6a5273ff2 100644 --- a/libutils/String16.cpp +++ b/libutils/String16.cpp @@ -171,11 +171,6 @@ size_t String16::size() const return SharedBuffer::sizeFromData(mString)/sizeof(char16_t)-1; } -const SharedBuffer* String16::sharedBuffer() const -{ - return SharedBuffer::bufferFromData(mString); -} - void String16::setTo(const String16& other) { SharedBuffer::bufferFromData(other.mString)->acquire(); |