summaryrefslogtreecommitdiff
path: root/src/dex_file.cc
diff options
context:
space:
mode:
author Brian Carlstrom <bdc@google.com> 2011-09-18 10:52:00 -0700
committer Brian Carlstrom <bdc@google.com> 2011-09-18 10:52:00 -0700
commit03c99df35373efa1924d0ab9c0d21f9061afe8ea (patch)
tree211cd72a2713c6a2d9f99f8c999e651f50432959 /src/dex_file.cc
parent534f045c57532f5689ccad269faa35b655a44f77 (diff)
Fix Class_getDeclaredConstructorOrMethod to look at direct as well as virtual methods
Change-Id: Ibc34e3e55b408b2ef04e439960c63fb6e98d06eb
Diffstat (limited to 'src/dex_file.cc')
-rw-r--r--src/dex_file.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dex_file.cc b/src/dex_file.cc
index c17a225b80..7c54018587 100644
--- a/src/dex_file.cc
+++ b/src/dex_file.cc
@@ -435,7 +435,6 @@ void DexFile::InitIndex() {
}
const DexFile::ClassDef* DexFile::FindClassDef(const StringPiece& descriptor) const {
- CHECK(!descriptor.empty());
Index::const_iterator it = index_.find(descriptor);
if (it == index_.end()) {
return NULL;