diff --git a/src/Task.cpp b/src/Task.cpp index 15cea7b42..88b8946f1 100644 --- a/src/Task.cpp +++ b/src/Task.cpp @@ -1184,16 +1184,6 @@ void Task::removeTag (const std::string& tag) } #ifdef PRODUCT_TASKWARRIOR -//////////////////////////////////////////////////////////////////////////////// -// A UDA is an attribute that has supporting config entries such as a data type: -// 'uda..type' -void Task::getUDAs (std::vector & names) const -{ - for (auto& it : *this) - if (context.config.get ("uda." + it.first + ".type") != "") - names.push_back (it.first); -} - //////////////////////////////////////////////////////////////////////////////// // A UDA Orphan is an attribute that is not represented in context.columns. void Task::getUDAOrphans (std::vector & names) const diff --git a/src/Task.h b/src/Task.h index 6b07cd0fc..139aefd60 100644 --- a/src/Task.h +++ b/src/Task.h @@ -139,7 +139,6 @@ public: void getDependencies (std::vector &) const; void getDependencies (std::vector &) const; - void getUDAs (std::vector &) const; void getUDAOrphans (std::vector &) const; void substitute (const std::string&, const std::string&, const std::string&);