From e7b7ba4843c781169a0f945308dd2b7ebc9e47e6 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sat, 25 Jun 2016 19:11:42 +0100 Subject: [PATCH] 9547: Remove methods that are not required --- gramps/plugins/database/dbapi.py | 57 -------------------------------- 1 file changed, 57 deletions(-) diff --git a/gramps/plugins/database/dbapi.py b/gramps/plugins/database/dbapi.py index 995d21845..bb6a98634 100644 --- a/gramps/plugins/database/dbapi.py +++ b/gramps/plugins/database/dbapi.py @@ -2014,60 +2014,3 @@ class DBAPI(DbGeneric): summary = super().get_summary() summary.update(self.dbapi.__class__.get_summary()) return summary - - # TODO: The following abstract methods need implementing. - # See bug #9547. - - def add_family_event(event, transaction): - pass - - def add_person_event(event, transaction): - pass - - def all_handles(table): - pass - - def commit_base(obj, data_map, key, transaction, change_time): - pass - - def commit_family_event(event, transaction, change_time): - pass - - def commit_personal_event(event, transaction, change_time): - pass - - def delete_primary_from_reference_map(handle, transaction): - pass - - def get_from_handle(handle, class_type, data_map): - pass - - def get_reference_map_cursor(): - pass - - def get_reference_map_primary_cursor(): - pass - - def get_reference_map_referenced_cursor(): - pass - - def gramps_upgrade(): - pass - - def need_schema_upgrade(): - pass - - def set_auto_remove(): - pass - - def set_redo_callback(callback): - pass - - def set_undo_callback(callback): - pass - - def sort_surname_list(): - pass - - def update_reference_map(obj, transaction): - pass