summaryrefslogtreecommitdiff
path: root/src/lib/content_factory.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-07 23:50:41 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-07 23:50:41 +0200
commitc925af666ba85be7c594f2aff1361b4cb9824ab2 (patch)
tree22caadd3b82b92bb39f7ab6cb84280ed9e386557 /src/lib/content_factory.cc
parent4f9314a311de379b105741273a15821da62a75cc (diff)
Remove erroneous comment.
Diffstat (limited to 'src/lib/content_factory.cc')
-rw-r--r--src/lib/content_factory.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/content_factory.cc b/src/lib/content_factory.cc
index b64c1b9a3..7bcc45503 100644
--- a/src/lib/content_factory.cc
+++ b/src/lib/content_factory.cc
@@ -66,9 +66,6 @@ content_factory (cxml::ConstNodePtr node, int version, list<string>& notes)
std::shared_ptr<Content> content;
if (type == "FFmpeg") {
- /* SndfileContent is now handled by the FFmpeg code rather than by
- separate libsndfile-based code.
- */
content = make_shared<FFmpegContent>(node, version, notes);
} else if (type == "Image") {
content = make_shared<ImageContent>(node, version);