removed unneeded values in the ItemType enumeration

git-svn-id: https://smali.googlecode.com/svn/trunk@181 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-06-20 20:30:57 +00:00
parent 8c568e2b37
commit 4517100574

View File

@ -39,11 +39,7 @@ public enum ItemType {
TYPE_DEBUG_INFO_ITEM( 0x2003, "debug_info_item"), TYPE_DEBUG_INFO_ITEM( 0x2003, "debug_info_item"),
TYPE_ANNOTATION_ITEM( 0x2004, "annotation_item"), TYPE_ANNOTATION_ITEM( 0x2004, "annotation_item"),
TYPE_ENCODED_ARRAY_ITEM( 0x2005, "encoded_array_item"), TYPE_ENCODED_ARRAY_ITEM( 0x2005, "encoded_array_item"),
TYPE_ANNOTATIONS_DIRECTORY_ITEM(0x2006, "annotations_directory_item"), TYPE_ANNOTATIONS_DIRECTORY_ITEM(0x2006, "annotations_directory_item");
TYPE_MAP_ITEM( -1, "map_item"),
TYPE_TYPE_ITEM( -1, "type_item"),
TYPE_EXCEPTION_HANDLER_ITEM( -1, "exception_handler_item"),
TYPE_ANNOTATION_SET_REF_ITEM( -1, "annotation_set_ref_item");
/** A map to facilitate looking up an <code>ItemType</code> by ordinal */ /** A map to facilitate looking up an <code>ItemType</code> by ordinal */
private final static TreeMap<Integer, ItemType> itemTypeIntegerMap; private final static TreeMap<Integer, ItemType> itemTypeIntegerMap;