diff options
author | 2011-10-21 19:57:36 -0400 | |
---|---|---|
committer | 2011-10-24 12:58:46 -0400 | |
commit | ecbce8f17a80ddc8e5d80b075a8e334f1c2daf3c (patch) | |
tree | 477e70768a1fcf82c2e17bf3bc89865ddf8dbdb0 /src/class_linker.cc | |
parent | 3bb81563481d02b5a6349b8ed918392454e761d8 (diff) |
Give proxy all of the return types. Part 2.
Change-Id: I953144290307f46824642837530ac4deeb6a78b2
Diffstat (limited to 'src/class_linker.cc')
-rw-r--r-- | src/class_linker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class_linker.cc b/src/class_linker.cc index 44ca80c0c4..8638b307ce 100644 --- a/src/class_linker.cc +++ b/src/class_linker.cc @@ -1632,7 +1632,7 @@ Method* ClassLinker::CreateProxyConstructor(SirtRef<Class>& klass) { // Create constructor for Proxy that must initialize h Class* proxy_class = GetClassRoot(kJavaLangReflectProxy); ObjectArray<Method>* proxy_direct_methods = proxy_class->GetDirectMethods(); - CHECK_EQ(proxy_direct_methods->GetLength(), 12); + CHECK_EQ(proxy_direct_methods->GetLength(), 15); Method* proxy_constructor = proxy_direct_methods->Get(2); // Clone the existing constructor of Proxy (our constructor would just invoke it so steal its // code_ too) |