Commit 09ca0107 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Removed an unecessary function.

It was introduced by the refactoring in 5a4e63e6 and made redundant by
the refactoring in 18934677.
parent 5ec0405a
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -344,15 +344,13 @@ class DatabaseWrapper(BaseDatabaseWrapper):
    def init_connection_state(self):
        pass

    def _sqlite_create_connection(self):
    def _cursor(self):
        if self.connection is None:
            conn_params = self.get_connection_params()
            self.connection = self.get_new_connection(conn_params)
            self.init_connection_state()
            connection_created.send(sender=self.__class__, connection=self)

    def _cursor(self):
        if self.connection is None:
            self._sqlite_create_connection()
        return self.connection.cursor(factory=SQLiteCursorWrapper)

    def check_constraints(self, table_names=None):