diff options
Diffstat (limited to 'runtime/art_method-inl.h')
| -rw-r--r-- | runtime/art_method-inl.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runtime/art_method-inl.h b/runtime/art_method-inl.h index b47f8f0fc2..685e26c78d 100644 --- a/runtime/art_method-inl.h +++ b/runtime/art_method-inl.h @@ -347,11 +347,7 @@ inline const char* ArtMethod::GetDeclaringClassSourceFile() { inline uint16_t ArtMethod::GetClassDefIndex() { DCHECK(!IsProxyMethod()); - if (LIKELY(!IsObsolete())) { - return GetDeclaringClass()->GetDexClassDefIndex(); - } else { - return FindObsoleteDexClassDefIndex(); - } + return GetDeclaringClass()->GetDexClassDefIndex(); } inline const DexFile::ClassDef& ArtMethod::GetClassDef() { |