Skip to content

Commit

Permalink
folder: LocalStatus(SQLite): avoid redefining unchanged Base method
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Sebrecht <[email protected]>
  • Loading branch information
nicolas33 committed Jan 18, 2015
1 parent 2af3d93 commit d0cb967
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions offlineimap/folder/LocalStatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ def storesmessages(self):
def isnewfolder(self):
return not os.path.exists(self.filename)

# Interface from BaseFolder
def getname(self):
return self.name

# Interface from BaseFolder
def getfullname(self):
return self.filename
Expand Down
3 changes: 0 additions & 3 deletions offlineimap/folder/LocalStatusSQLite.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,6 @@ def __init__(self, name, repository):
def storesmessages(self):
return False

def getname(self):
return self.name

def getfullname(self):
return self.filename

Expand Down

0 comments on commit d0cb967

Please sign in to comment.