# HG changeset patch # User Augie Fackler # Date 1465172105 14400 # Node ID 5b9002d28418550b8f6779fc504cb5dba55f7780 # Parent 6ad1755f9e3f70fd23a70d6f909a86026d0b5bcb maps: drop two unused __init__ implementations diff --git a/hgsubversion/maps.py b/hgsubversion/maps.py --- 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)