summaryrefslogtreecommitdiffstats
path: root/src/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 17:02:30 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 19:37:24 -0400
commit5c79e4ca151dab969d84899029d8cfdf1f32d654 (patch)
tree198b00ba3f994ff2a467bd9e9b5a39d69fbf2e09 /src/client
parentdd71122bce462e3ac5304e04919018a7f552867e (diff)
downloadingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.tar.gz
ingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.tar.bz2
ingen-5c79e4ca151dab969d84899029d8cfdf1f32d654.zip
Remove redundant method override
Diffstat (limited to 'src/client')
-rw-r--r--src/client/GraphModel.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/client/GraphModel.cpp b/src/client/GraphModel.cpp
index 1404f021..0837f738 100644
--- a/src/client/GraphModel.cpp
+++ b/src/client/GraphModel.cpp
@@ -179,11 +179,4 @@ GraphModel::internal_poly() const
return poly.is_valid() ? poly.get<int32_t>() : 1;
}
-bool
-GraphModel::polyphonic() const
-{
- const Atom& poly = get_property(_uris.ingen_polyphonic);
- return poly.is_valid() && poly.get<int32_t>();
-}
-
} // namespace ingen::client