summaryrefslogtreecommitdiffstats
path: root/oatdump/oatdump.cc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-10-09 21:00:27 -0700
committerBrian Carlstrom <bdc@google.com>2013-10-09 21:00:27 -0700
commit8e3fb14615f20677da8421ada131b5f2fcd8eb56 (patch)
treea06c3cbc6d8ea544fd221765af770921fd340d77 /oatdump/oatdump.cc
parent31c9763a1b5f45ee51cef272244a58fb1115945a (diff)
downloadart-8e3fb14615f20677da8421ada131b5f2fcd8eb56.zip
art-8e3fb14615f20677da8421ada131b5f2fcd8eb56.tar.gz
art-8e3fb14615f20677da8421ada131b5f2fcd8eb56.tar.bz2
Revert "Add Jack modifier."
This reverts commit 6ffd0967027c092a62d7100ca42ceded369c8ca1. Change-Id: Ia69241a5100e8f740379e2ed944279de4daaf9ed
Diffstat (limited to 'oatdump/oatdump.cc')
-rw-r--r--oatdump/oatdump.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/oatdump/oatdump.cc b/oatdump/oatdump.cc
index bc450bb..304222a 100644
--- a/oatdump/oatdump.cc
+++ b/oatdump/oatdump.cc
@@ -256,10 +256,7 @@ class OatDumper {
UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file.GetOatClass(class_def_index));
CHECK(oat_class.get() != NULL);
os << StringPrintf("%zd: %s (type_idx=%d) (", class_def_index, descriptor, class_def.class_idx_)
- << oat_class->GetStatus() << ")"
- // TODO: JACK CLASS ACCESS (HACK TO BE REMOVED)
- << ( (class_def.access_flags_ & kAccClassJack) == kAccClassJack ? " (Jack)" : "" )
- << "\n";
+ << oat_class->GetStatus() << ")\n";
Indenter indent_filter(os.rdbuf(), kIndentChar, kIndentBy1Count);
std::ostream indented_os(&indent_filter);
DumpOatClass(indented_os, *oat_class.get(), *(dex_file.get()), class_def);