aboutsummaryrefslogtreecommitdiffstats
path: root/src/SongUpdate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/SongUpdate.cxx')
-rw-r--r--src/SongUpdate.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/SongUpdate.cxx b/src/SongUpdate.cxx
index fe78e1e0f..953c23961 100644
--- a/src/SongUpdate.cxx
+++ b/src/SongUpdate.cxx
@@ -132,17 +132,3 @@ Song::UpdateFileInArchive()
tag = tag_builder.CommitNew();
return true;
}
-
-bool
-Song::UpdateStream()
-{
- assert(!IsFile());
-
- TagBuilder tag_builder;
- if (!tag_stream_scan(uri, full_tag_handler, &tag_builder))
- return false;
-
- delete tag;
- tag = tag_builder.CommitNew();
- return true;
-}