summaryrefslogtreecommitdiffstats
path: root/runtime/method_reference.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/method_reference.h')
-rw-r--r--runtime/method_reference.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/runtime/method_reference.h b/runtime/method_reference.h
index 8e46d7e607..f4fe9b20bd 100644
--- a/runtime/method_reference.h
+++ b/runtime/method_reference.h
@@ -23,9 +23,6 @@ namespace art {
class DexFile;
-// A class is uniquely located by its DexFile and the class_defs_ table index into that DexFile
-typedef std::pair<const DexFile*, uint32_t> ClassReference;
-
// A method is uniquely located by its DexFile and the method_ids_ table index into that DexFile
struct MethodReference {
MethodReference(const DexFile* file, uint32_t index) : dex_file(file), dex_method_index(index) {