Remove unused function assignTag

This commit is contained in:
Benjamin Bræstrup Sayoc
2025-02-09 14:50:12 +01:00
parent 8c8179feb9
commit 934e9fb683
7 changed files with 0 additions and 37 deletions

View File

@@ -255,14 +255,6 @@ void CosmeticVertex::createNewTag()
tag = gen();
}
void CosmeticVertex::assignTag(const TechDraw::CosmeticVertex* cv)
{
if(cv->getTypeId() == this->getTypeId())
this->tag = cv->tag;
else
throw Base::TypeError("CosmeticVertex tag can not be assigned as types do not match.");
}
CosmeticVertex* CosmeticVertex::copy() const
{
// Base::Console().Message("CV::copy()\n");