diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-08-14 15:57:29 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-10-08 20:54:08 +0200 |
commit | 9caabe68c8e53d51c2f3cae59673a2fbc54afa5f (patch) | |
tree | fc8c27067335336be4f26a4e0d3b114ec623f7b6 /giscanner/gdumpparser.py | |
parent | a52dd2c3cf240c8b6b621305b2f80d76eadc7a64 (diff) | |
download | gobject-introspection-9caabe68c8e53d51c2f3cae59673a2fbc54afa5f.tar.gz |
giscanner: remove dead code
Last call sites where removed in 36aa515f1036978ced8d4ffb808260844f7229e0
about 3 years ago.
Diffstat (limited to 'giscanner/gdumpparser.py')
-rw-r--r-- | giscanner/gdumpparser.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/giscanner/gdumpparser.py b/giscanner/gdumpparser.py index 568777bd..0f537ea9 100644 --- a/giscanner/gdumpparser.py +++ b/giscanner/gdumpparser.py @@ -523,14 +523,6 @@ different --identifier-prefix.""" % (xmlnode.attrib['name'], self._namespace.ide else: return False - def _strip_class_suffix(self, name): - if (name.endswith('Class') or name.endswith('Iface')): - return name[:-5] - elif name.endswith('Interface'): - return name[:-9] - else: - return None - def _find_class_record(self, cls): pair_record = None if isinstance(cls, ast.Class): |