From: Carl Worth Date: Wed, 21 Oct 2009 06:12:53 +0000 (-0700) Subject: database: Remove two little bits of dead code. X-Git-Tag: 0.1~803 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=50144fb354dc5bf282c2a2cdc68c926e42ccf3ef database: Remove two little bits of dead code. --- diff --git a/database.cc b/database.cc index 041cffdc..5ee07059 100644 --- a/database.cc +++ b/database.cc @@ -457,7 +457,6 @@ notmuch_database_open (const char *path) notmuch->path = xstrdup (path); try { - Xapian::PostingIterator i; notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path, Xapian::DB_CREATE_OR_OPEN); } catch (const Xapian::Error &error) { @@ -519,8 +518,6 @@ notmuch_database_add_message (notmuch_database_t *notmuch, (char *) NULL); try { - doc = Xapian::Document (); - doc.set_data (filename); parents = g_ptr_array_new ();