summaryrefslogtreecommitdiff
path: root/runtime/reflective_value_visitor.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2019-10-04 08:38:11 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2019-10-04 08:38:38 +0000
commit712fa800b2b78e527d36c88dc369bf4b723587ea (patch)
treeccc4573a3c6bef136ef6da022350ebb5c17a1892 /runtime/reflective_value_visitor.cc
parentf70dfec27cae2625c199f1b8ecf1ef1f23580a45 (diff)
Revert "Walk internal ArtField/ArtMethod pointers"
This reverts commit c84fc3a742b160ce51cbf01c2e5f971ccc0a2c6c. Bug: 134162467 Reason for revert: Test fails on debuggable. Change-Id: I240d58fafcc7434749947330b64c67d65b9b7a1e
Diffstat (limited to 'runtime/reflective_value_visitor.cc')
-rw-r--r--runtime/reflective_value_visitor.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/runtime/reflective_value_visitor.cc b/runtime/reflective_value_visitor.cc
index 5a288d38be..69fd51ff6e 100644
--- a/runtime/reflective_value_visitor.cc
+++ b/runtime/reflective_value_visitor.cc
@@ -42,13 +42,4 @@ void JniIdReflectiveSourceInfo<jmethodID>::Describe(std::ostream& os) const {
os << " jmethodID=" << reinterpret_cast<uintptr_t>(id_);
}
-void ReflectiveHandleScopeSourceInfo::Describe(std::ostream& os) const {
- ReflectionSourceInfo::Describe(os);
- os << " source= (" << source_ << ") ";
- if (source_ == nullptr) {
- os << "nullptr";
- } else {
- os << *source_;
- }
-}
} // namespace art