From dbd3835ba2ec3b32fd49aa150b8726f625a8371a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ante=20Pu=C5=A1i=C4=87?= Date: Tue, 16 Jan 2024 07:58:32 +0100 Subject: [PATCH] Remove comment --- src/storage/v2/property_store.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/storage/v2/property_store.cpp b/src/storage/v2/property_store.cpp index d22b3cc30..cce552d2a 100644 --- a/src/storage/v2/property_store.cpp +++ b/src/storage/v2/property_store.cpp @@ -1024,18 +1024,6 @@ PropertyStore::~PropertyStore() { } PropertyValue PropertyStore::GetProperty(PropertyId property) const { - // if (external) { - // int DUMMY_GRAPH_ELEMENT_ID = 1; - - // auto key = property.ToString(); - // auto properties = external_store_mock->GetDocument(DUMMY_GRAPH_ELEMENT_ID)["properties"]; - // if (!properties.contains(key)) { - // return PropertyValue(); - // } - - // return PropertyValue(properties.at(key).get()); - // } - uint64_t size; const uint8_t *data; std::tie(size, data) = GetSizeData(buffer_); @@ -1133,7 +1121,6 @@ std::map PropertyStore::Properties() const { return props; } -/// NOTE: The external_store_mock argument will be removed after replacing the mock with the mgcxx Tantivy API bool PropertyStore::SetProperty(PropertyId property, const PropertyValue &value) { uint64_t property_size = 0; if (!value.IsNull()) {