diff options
author | Sergio Giro <sgiro@google.com> | 2015-09-30 15:21:48 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-09-30 15:21:48 +0000 |
commit | e045333445ab3ebb8d602d25ed750169f135baa6 (patch) | |
tree | 9f0af28c06f5da7504d6c9aff3cba2b974fe3bad /libutils | |
parent | 730fdbb1ca4c39a4d69868f7a261b023f2bea296 (diff) | |
parent | 282efae9c3d14ca2641e5fea223cb1be204feff1 (diff) |
Merge "system/core: remove methods returning SharedBuffer in String8, String16"
Diffstat (limited to 'libutils')
-rw-r--r-- | libutils/String16.cpp | 5 | ||||
-rw-r--r-- | libutils/String8.cpp | 5 |
2 files changed, 0 insertions, 10 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(); 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; |