From 5a4b8a236030460651a3136397d23ca6744e7eb7 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Thu, 11 Sep 2014 08:30:08 -0700 Subject: ART: Rename Handle hierarchy Bring the names in line with normal OO principles: ConstHandle becomes Handle, and Handle becomes MutableHandle. Change-Id: I0f018eb7ba28bc422e3a23dd73a6cbe6fc2d2044 --- runtime/debugger.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/debugger.cc') diff --git a/runtime/debugger.cc b/runtime/debugger.cc index c8bb537018..cc1e0b994a 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -3611,7 +3611,7 @@ void Dbg::ExecuteMethod(DebugInvokeReq* pReq) { } // Translate the method through the vtable, unless the debugger wants to suppress it. - Handle m(hs.NewHandle(pReq->method)); + MutableHandle m(hs.NewHandle(pReq->method)); if ((pReq->options & JDWP::INVOKE_NONVIRTUAL) == 0 && pReq->receiver != nullptr) { mirror::ArtMethod* actual_method = pReq->klass->FindVirtualMethodForVirtualOrInterface(m.Get()); if (actual_method != m.Get()) { -- cgit v1.2.3