From: David Stainton <dstainton415@gmail.com>
Date: Tue, 14 Jul 2015 23:36:11 +0000 (-0700)
Subject: remove superfluous constructor which the parent class already has
X-Git-Url: https://git.rkrishnan.org/Site/Content/Exhibitors/banana.xhtml?a=commitdiff_plain;h=5044215d8d7b1bd79ae9104039671a8965a91429;p=tahoe-lafs%2Ftahoe-lafs.git

remove superfluous constructor which the parent class already has
---

diff --git a/src/allmydata/backupdb.py b/src/allmydata/backupdb.py
index b24c217e..2d720a1c 100644
--- a/src/allmydata/backupdb.py
+++ b/src/allmydata/backupdb.py
@@ -368,11 +368,6 @@ class BackupDB_v2:
 class BackupDB_v3(BackupDB_v2):
     VERSION = 3 # XXX does this override the class var from parent class?
 
-    def __init__(self, sqlite_module, connection):
-        self.sqlite_module = sqlite_module
-        self.connection = connection
-        self.cursor = connection.cursor()
-
     def get_local_file_version(self, path):
         """I will tell you the version of a local file tracked by our magic folder db.
         If no db entry found then I'll return None.