summaryrefslogtreecommitdiff
path: root/runtime/entrypoints/entrypoint_utils.cc
diff options
context:
space:
mode:
author Narayan Kamath <narayan@google.com> 2017-03-17 09:05:55 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-03-17 09:05:56 +0000
commit8f2b925473cfdc7650cef407102957befe0c6bb5 (patch)
tree4af3395adaf03cb4a60cd40e7b3ee4196645eb9e /runtime/entrypoints/entrypoint_utils.cc
parentde9b8d63ef548d56de9c9d4657a7b916050d81ad (diff)
parent6b2dc3156a2140a5bfd9cbbf5d7dad332ab5f5bd (diff)
Merge "ART: Get rid of most of java.lang.DexCache."
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils.cc')
-rw-r--r--runtime/entrypoints/entrypoint_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints/entrypoint_utils.cc b/runtime/entrypoints/entrypoint_utils.cc
index 2b35b46432..b5130d7999 100644
--- a/runtime/entrypoints/entrypoint_utils.cc
+++ b/runtime/entrypoints/entrypoint_utils.cc
@@ -138,7 +138,7 @@ JValue InvokeProxyInvocationHandler(ScopedObjectAccessAlreadyRunnable& soa, cons
reinterpret_cast<uintptr_t>(&virtual_methods.At(0))) / method_size;
CHECK_LT(throws_index, static_cast<int>(num_virtuals));
mirror::ObjectArray<mirror::Class>* declared_exceptions =
- proxy_class->GetThrows()->Get(throws_index);
+ proxy_class->GetProxyThrows()->Get(throws_index);
mirror::Class* exception_class = exception->GetClass();
for (int32_t i = 0; i < declared_exceptions->GetLength() && !declares_exception; i++) {
mirror::Class* declared_exception = declared_exceptions->Get(i);