diff options
Diffstat (limited to 'runtime/mirror/array.h')
| -rw-r--r-- | runtime/mirror/array.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/mirror/array.h b/runtime/mirror/array.h index eead4ebe08..238506e86d 100644 --- a/runtime/mirror/array.h +++ b/runtime/mirror/array.h @@ -23,7 +23,7 @@ namespace art { -template<class T> class SirtRef; +template<class T> class Handle; namespace mirror { @@ -38,8 +38,8 @@ class MANAGED Array : public Object { bool fill_usable = false) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); - static Array* CreateMultiArray(Thread* self, const SirtRef<Class>& element_class, - const SirtRef<IntArray>& dimensions) + static Array* CreateMultiArray(Thread* self, const Handle<Class>& element_class, + const Handle<IntArray>& dimensions) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); template<VerifyObjectFlags kVerifyFlags = kDefaultVerifyFlags, |