diff options
Diffstat (limited to 'runtime/native/java_lang_Class.cc')
| -rw-r--r-- | runtime/native/java_lang_Class.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/native/java_lang_Class.cc b/runtime/native/java_lang_Class.cc index 7ea07464db..4443045319 100644 --- a/runtime/native/java_lang_Class.cc +++ b/runtime/native/java_lang_Class.cc @@ -56,9 +56,9 @@ namespace art { -// Should be the same as dalvik.system.VMRuntime.PREVENT_META_REFLECTION_BLACKLIST_ACCESS. +// Should be the same as dalvik.system.VMRuntime.PREVENT_META_REFLECTION_BLOCKLIST_ACCESS. // Corresponds to a bug id. -static constexpr uint64_t kPreventMetaReflectionBlacklistAccess = 142365358; +static constexpr uint64_t kPreventMetaReflectionBlocklistAccess = 142365358; // Walks the stack, finds the caller of this reflective call and returns // a hiddenapi AccessContext formed from its declaring class. @@ -105,7 +105,7 @@ static hiddenapi::AccessContext GetReflectionCaller(Thread* self) // (e.g. in 691-hiddenapi-proxy). ObjPtr<mirror::Class> proxy_class = GetClassRoot<mirror::Proxy>(); if (declaring_class->IsInSamePackage(proxy_class) && declaring_class != proxy_class) { - if (Runtime::Current()->isChangeEnabled(kPreventMetaReflectionBlacklistAccess)) { + if (Runtime::Current()->isChangeEnabled(kPreventMetaReflectionBlocklistAccess)) { return true; } } |