Skip to content
This repository was archived by the owner on Apr 13, 2019. It is now read-only.

Commit 5822173

Browse files
Glenn ScottGlenn Scott
authored andcommitted
Incorporating review changes.
1 parent 79066c0 commit 5822173

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ccnx/forwarder/metis/content_store/metis_LRUContentStore.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ _MetisContentStoreInterface_Destroy(MetisContentStoreInterface **storeImplPtr)
122122
{
123123
_MetisLRUContentStore *store = metisContentStoreInterface_GetPrivateData(*storeImplPtr);
124124

125-
// _destroyIndexes(store);
126125
parcObject_Release((PARCObject **) &store);
127126
}
128127

@@ -515,13 +514,9 @@ metisLRUContentStore_Create(MetisContentStoreConfig *config, MetisLogger *logger
515514

516515
assertNotNull(logger, "MetisLRUContentStore requires a non-NULL logger");
517516

518-
// size_t allocationSize = sizeof(MetisContentStoreInterface) + sizeof(_MetisLRUContentStore);
519-
520-
// storeImpl = parcObject_CreateAndClearInstanceImpl(allocationSize, &parcObject_MetaName(MetisContentStoreInterface));
521517
storeImpl = parcObject_CreateAndClearInstance(MetisContentStoreInterface);
522518

523519
if (storeImpl != NULL) {
524-
// storeImpl->_privateData = (uint8_t *) storeImpl + sizeof(MetisContentStoreInterface);
525520
storeImpl->_privateData = parcObject_CreateAndClearInstance(_MetisLRUContentStore);
526521

527522
if (_metisLRUContentStore_Init(storeImpl->_privateData, config, logger)) {

0 commit comments

Comments
 (0)