From 6ee2f2da96e1137d64f782801d5616ceb47ebd41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 28 Sep 2021 17:47:28 +0200 Subject: [PATCH] Cleanup: asset catalog, remove obsolete TODO No functional changes. --- source/blender/blenkernel/intern/asset_catalog.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/blender/blenkernel/intern/asset_catalog.cc b/source/blender/blenkernel/intern/asset_catalog.cc index e16537fcb7f..d54e3b93dda 100644 --- a/source/blender/blenkernel/intern/asset_catalog.cc +++ b/source/blender/blenkernel/intern/asset_catalog.cc @@ -664,9 +664,7 @@ bool AssetCatalogDefinitionFile::write_to_disk_unsafe(const CatalogFilePath &des output << VERSION_MARKER << SUPPORTED_VERSION << std::endl; output << "" << std::endl; - // Write the catalogs. - // TODO(@sybren): order them by Catalog ID or Catalog Path. - + // Write the catalogs, ordered by path (primary) and UUID (secondary). AssetCatalogOrderedSet catalogs_by_path; for (const AssetCatalog *catalog : catalogs_.values()) { if (catalog->flags.is_deleted) {