diff options
Diffstat (limited to 'runtime/hprof/hprof.cc')
| -rw-r--r-- | runtime/hprof/hprof.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/hprof/hprof.cc b/runtime/hprof/hprof.cc index fe6a6e9140..3d3ad593b3 100644 --- a/runtime/hprof/hprof.cc +++ b/runtime/hprof/hprof.cc @@ -1169,7 +1169,7 @@ void Hprof::DumpHeapObject(mirror::Object* obj) { } void Hprof::DumpHeapClass(mirror::Class* klass) { - if (!klass->IsResolved() && !klass->IsErroneous()) { + if (!klass->IsResolved()) { // Class is allocated but not yet resolved: we cannot access its fields or super class. return; } |