changeset 33:e625ebf17441

remove rel_marker_info_check_also from dexfile.py
author Thinker K.F. Li <thinker@codemud.net>
date Wed, 15 Jun 2011 02:33:30 +0800
parents 9bac21d401fe
children fe1ebf0c3d40
files paraspace/dexfile.py
diffstat 1 files changed, 0 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/paraspace/dexfile.py	Wed Jun 15 02:03:38 2011 +0800
+++ b/paraspace/dexfile.py	Wed Jun 15 02:33:30 2011 +0800
@@ -404,24 +404,6 @@
     pass
 
 
-class rel_marker_info_check_also(relocatable):
-    name_path = None
-    back_type = None
-    
-    def __init__(self, name_path, back_type):
-        if not isinstance(back_type, array):
-            raise TypeError, 'back type should be a dexfile.array'
-        
-        self.name_path = name_path
-        self.back_type = back_type
-        pass
-
-    def parse(self, parent, data, off):
-        child = self.back_type.parse(parent, data, off)
-        return child
-    pass
-
-
 class composite(relocatable):
     child_names = None