Mercurial > hgsubversion
changeset 1427:5b9002d28418
maps: drop two unused __init__ implementations
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Sun, 05 Jun 2016 20:15:05 -0400 |
parents | 6ad1755f9e3f |
children | da272633997f |
files | hgsubversion/maps.py |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/maps.py +++ b/hgsubversion/maps.py @@ -569,9 +569,6 @@ class BranchMap(BaseMap): changes on other will now be on default (have no branch name set). ''' - def __init__(self, meta): - super(BranchMap, self).__init__(meta) - class TagMap(BaseMap): '''Facility for controlled renaming of tags. Example: @@ -581,6 +578,3 @@ class TagMap(BaseMap): The oldname tag from SVN will be represented as newname in the hg tags; the other tag will not be reflected in the hg repository. ''' - - def __init__(self, meta): - super(TagMap, self).__init__(meta)