From a330baf5da90a8411cf92e067a5cb5af4e40e3e7 Mon Sep 17 00:00:00 2001 From: David Kekesi Date: Thu, 7 Nov 2024 11:08:56 +0100 Subject: [PATCH] cleanup --- .../ArchicadDBase/Element/ArchicadElementDBaseEngine.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SpeckleLib/Speckle/Database/Storage/ArchicadDBase/Element/ArchicadElementDBaseEngine.cpp b/SpeckleLib/Speckle/Database/Storage/ArchicadDBase/Element/ArchicadElementDBaseEngine.cpp index 6cc59bd..225e050 100644 --- a/SpeckleLib/Speckle/Database/Storage/ArchicadDBase/Element/ArchicadElementDBaseEngine.cpp +++ b/SpeckleLib/Speckle/Database/Storage/ArchicadDBase/Element/ArchicadElementDBaseEngine.cpp @@ -110,11 +110,10 @@ namespace { return std::make_unique(elementData, tableID); case API_WallID: return std::make_unique(elementData, tableID); - case API_ObjectID: { + case API_ObjectID: // POC: change this case once we are ready to convert Grid Elements if (elementData.header.type.variationID == APIVarId_GridElement) return nullptr; - } default: return std::make_unique(elementData, tableID); }