diff options
author | 2014-09-23 10:38:30 -0700 | |
---|---|---|
committer | 2014-09-29 11:40:16 -0700 | |
commit | c0d8229898c44c0f604f08a5df1de83ff56c18fd (patch) | |
tree | 13b150e68e806204c547e04bc071246c06199c37 /runtime/reflection.h | |
parent | c70535b4f9f1ff3e3da451734bb7d9601012ccc1 (diff) |
ART: Better IllegalAccessException message
Bug: 17618578
Bug: 17614623
Change-Id: I0e3f15e676acd6ed5844fc86e136f75cc335372d
Diffstat (limited to 'runtime/reflection.h')
-rw-r--r-- | runtime/reflection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/reflection.h b/runtime/reflection.h index 00f9d09128..23d8e05452 100644 --- a/runtime/reflection.h +++ b/runtime/reflection.h @@ -76,7 +76,7 @@ bool VerifyObjectIsClass(mirror::Object* o, mirror::Class* c) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); bool VerifyAccess(Thread* self, mirror::Object* obj, mirror::Class* declaring_class, - uint32_t access_flags) + uint32_t access_flags, mirror::Class** calling_class) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); } // namespace art |