From 82a39e5d98fb6c24fbc5c67f69834223c8d13090 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 10 Jun 2021 15:58:32 +0200 Subject: [PATCH] Fix `Asset::ToString()` to not depend on refs count and look simpler --- Source/Engine/Content/Asset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Content/Asset.cpp b/Source/Engine/Content/Asset.cpp index d3d5830b2..4614f33cf 100644 --- a/Source/Engine/Content/Asset.cpp +++ b/Source/Engine/Content/Asset.cpp @@ -111,7 +111,7 @@ Asset::Asset(const SpawnParams& params, const AssetInfo* info) String Asset::ToString() const { - return String::Format(TEXT("{0}: {1}, \'{2}\', Refs: {3}"), GetTypeName(), GetID(), GetPath(), GetReferencesCount()); + return String::Format(TEXT("{0}, {1}, {2}"), GetTypeName(), GetID(), GetPath()); } void Asset::OnDeleteObject()