diff options
Diffstat (limited to 'runtime/art_field.cc')
-rw-r--r-- | runtime/art_field.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/art_field.cc b/runtime/art_field.cc index dcfd7582fe..70d6d2ba94 100644 --- a/runtime/art_field.cc +++ b/runtime/art_field.cc @@ -60,6 +60,7 @@ std::string ArtField::PrettyField(bool with_type) { result += PrettyDescriptor(GetTypeDescriptor()); result += ' '; } + // Note: `GetDeclaringClassDescriptor()` does not support proxy classes. std::string temp; result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); result += '.'; |