libsaria: Remove unused variable from Track()

This commit is contained in:
Bryan Schumaker 2011-12-30 19:46:30 -05:00
parent 94a17a32a4
commit 0ef8e44207
2 changed files with 0 additions and 3 deletions

View File

@ -32,7 +32,6 @@ namespace libsaria
string *artist_lc;
string *album_lc;
bool needs_cleanup;
void make_lenstr();
void do_bookkeeping();

View File

@ -13,7 +13,6 @@ namespace libsaria
Track::Track()
{
needs_cleanup = false;
}
Track::Track(string file, sid_t sid)
@ -81,7 +80,6 @@ namespace libsaria
album_lc = lowercase(album);
libsaria::index::add_track(this);
libsaria::library::list_track(this);
needs_cleanup = true;
}
void Track::save(OutFile &out)