summaryrefslogtreecommitdiff
path: root/src/TagArchive.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2016-02-26 15:07:00 +0100
committerMax Kellermann <max@duempel.org>2016-02-26 15:07:00 +0100
commited5058a363714513269e1f5279a24f2a125036dc (patch)
treea52da2f71ccb4117a63adb21f9034cd7dbff4791 /src/TagArchive.cxx
parenta670ff6d3e8270e15d6549b37fcd993182a6cb7b (diff)
TagArchive: remove obsolete overload
Diffstat (limited to 'src/TagArchive.cxx')
-rw-r--r--src/TagArchive.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/TagArchive.cxx b/src/TagArchive.cxx
index 935669025..53413c1df 100644
--- a/src/TagArchive.cxx
+++ b/src/TagArchive.cxx
@@ -48,18 +48,6 @@ tag_archive_scan(Path path, const TagHandler &handler, void *handler_ctx)
}
bool
-tag_archive_scan(Path path, TagBuilder &builder)
-{
- assert(!path.IsNull());
-
- Mutex mutex;
- Cond cond;
- InputStreamPtr is(OpenArchiveInputStream(path, mutex, cond,
- IgnoreError()));
- return is && tag_stream_scan(*is, builder);
-}
-
-bool
tag_archive_scan(ArchiveFile &archive, const char *path_utf8,
TagBuilder &builder)
{