diff options
author | David Robillard <d@drobilla.net> | 2019-12-08 19:27:55 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-08 20:59:06 +0100 |
commit | 1920eb87c72de856e957fc3093f28cea62d72063 (patch) | |
tree | 5c1659e398521382026bee3ceaed9a2cead69cf7 /src | |
parent | ffe238b426ab7ad7b3d6f8efd49cf4c7861fbf6f (diff) | |
download | ingen-1920eb87c72de856e957fc3093f28cea62d72063.tar.gz ingen-1920eb87c72de856e957fc3093f28cea62d72063.tar.bz2 ingen-1920eb87c72de856e957fc3093f28cea62d72063.zip |
Cleanup: Remove redundant branches
Diffstat (limited to 'src')
-rw-r--r-- | src/AtomReader.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/AtomReader.cpp b/src/AtomReader.cpp index 8b63c749..fc74c5d5 100644 --- a/src/AtomReader.cpp +++ b/src/AtomReader.cpp @@ -379,10 +379,6 @@ AtomReader::write(const LV2_Atom* msg, int32_t default_id) _iface(Response{((const LV2_Atom_Int*)seq)->body, (ingen::Status)((const LV2_Atom_Int*)body)->body, subject_uri ? subject_uri->c_str() : ""}); - } else if (obj->body.otype == _uris.ingen_BundleStart) { - _iface(BundleBegin{seq}); - } else if (obj->body.otype == _uris.ingen_BundleEnd) { - _iface(BundleEnd{seq}); } else { _log.warn("Unknown object type <%1%>\n", _map.unmap_uri(obj->body.otype)); |