diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2025-07-25 19:06:06 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-07-28 11:48:53 +0300 |
commit | 3b8b408b9031f295a936eb5e3342fbb7eb671c7c (patch) | |
tree | b38f5dbdbf5ab805c56275f20adc068e3fd7c5b1 /indra/llinventory/tests | |
parent | 329e71a7d94a4008c78616490c058bcce61a1332 (diff) |
#3969 Make inventory creation from cache faster
Still has a lot of space for improvements, but should be 2.5 times faster
Diffstat (limited to 'indra/llinventory/tests')
-rw-r--r-- | indra/llinventory/tests/inventorymisc_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llinventory/tests/inventorymisc_test.cpp b/indra/llinventory/tests/inventorymisc_test.cpp index e41500b4c5..f11a4c3bf7 100644 --- a/indra/llinventory/tests/inventorymisc_test.cpp +++ b/indra/llinventory/tests/inventorymisc_test.cpp @@ -518,7 +518,7 @@ namespace tut file.close(); LLPointer<LLInventoryCategory> src2 = new LLInventoryCategory(); - src2->importLLSD(s_item); + src2->importLLSDMap(s_item); ensure_equals("1.item id::getUUID() failed", src1->getUUID(), src2->getUUID()); ensure_equals("2.parent::getParentUUID() failed", src1->getParentUUID(), src2->getParentUUID()); |