diff options
author | David Robillard <d@drobilla.net> | 2017-03-26 11:53:09 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-03-26 17:01:11 +0200 |
commit | d70ddd35cc03b35d3b765079d6039fef7a2a19fa (patch) | |
tree | 36056c38e59eb65f0b054551ccd7086f28cc834e /ingen | |
parent | c69d9d5121b5bcb1e408caa475befcfad3c411c3 (diff) | |
download | ingen-d70ddd35cc03b35d3b765079d6039fef7a2a19fa.tar.gz ingen-d70ddd35cc03b35d3b765079d6039fef7a2a19fa.tar.bz2 ingen-d70ddd35cc03b35d3b765079d6039fef7a2a19fa.zip |
Remove Node::base_uri() method
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/Node.hpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ingen/Node.hpp b/ingen/Node.hpp index ddf7bf82..51b000bf 100644 --- a/ingen/Node.hpp +++ b/ingen/Node.hpp @@ -77,13 +77,6 @@ public: virtual const Raul::Path& path() const = 0; virtual const Raul::Symbol& symbol() const = 0; - Raul::URI base_uri() const { - if (uri()[uri().size() - 1] == '/') { - return uri(); - } - return Raul::URI(uri() + '/'); - } - protected: friend class Store; virtual void set_path(const Raul::Path& p) = 0; |