diff options
author | 2016-12-14 10:11:49 -0800 | |
---|---|---|
committer | 2016-12-15 09:50:39 -0800 | |
commit | 46ee31b67d7ee1bd085fbc240502053caa3cf8fa (patch) | |
tree | 83e870f293cd60d533207e389d7b094acd87b31f /runtime/jdwp/jdwp_request.cc | |
parent | 9538f9e2a5d03f1b1bc07ebfbd93b61dcf8ad604 (diff) |
ART: Move to libbase StringPrintf
Remove ART's StringPrintf implementation. Fix up clients. Add
missing includes where necessary.
Test: m test-art-host
Change-Id: I564038d5868595ac3bb88d641af1000cea940e5a
Diffstat (limited to 'runtime/jdwp/jdwp_request.cc')
-rw-r--r-- | runtime/jdwp/jdwp_request.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/jdwp/jdwp_request.cc b/runtime/jdwp/jdwp_request.cc index 18f40a143c..6af267e674 100644 --- a/runtime/jdwp/jdwp_request.cc +++ b/runtime/jdwp/jdwp_request.cc @@ -18,7 +18,8 @@ #include <inttypes.h> -#include "base/stringprintf.h" +#include "android-base/stringprintf.h" + #include "jdwp/jdwp_priv.h" namespace art { @@ -100,7 +101,7 @@ MethodId Request::ReadMethodId() { ObjectId Request::ReadObjectId(const char* specific_kind) { ObjectId id = Read8BE(); - VLOG(jdwp) << StringPrintf(" %s id %#" PRIx64, specific_kind, id); + VLOG(jdwp) << android::base::StringPrintf(" %s id %#" PRIx64, specific_kind, id); return id; } |