diff --git a/Applications/DataHolderLib/Project.cpp b/Applications/DataHolderLib/Project.cpp index 49942e9f08981818af640b7e8cd1157450a2c233..097367bea3919b0085cbf13a76c89080edc18ae8 100644 --- a/Applications/DataHolderLib/Project.cpp +++ b/Applications/DataHolderLib/Project.cpp @@ -60,11 +60,6 @@ bool Project::removeMesh(const std::string &name) return false; } -bool Project::meshExists(const std::string &name) const -{ - return findMeshByName(name) != _mesh_vec.end(); -} - bool Project::getUniqueName(std::string &name) const { int count(0); diff --git a/Applications/DataHolderLib/Project.h b/Applications/DataHolderLib/Project.h index 3af09063bbb1c9a486aa53c751b6442f1a91ed94..02ca92343018e77967d2618e0b7c8fe6f53ee0eb 100644 --- a/Applications/DataHolderLib/Project.h +++ b/Applications/DataHolderLib/Project.h @@ -106,10 +106,6 @@ private: /// Returns false and changes the provided name to a unique name otherwise. bool getUniqueName(std::string &name) const; - /// Returns true if a mesh with the same name exists and false otherwise. - bool meshExists(const std::string &name) const; - - /// Returns an iterator to the first found mesh with the given name. std::vector<std::unique_ptr<MeshLib::Mesh>>::const_iterator findMeshByName( std::string const& name) const;