Fix Asset::ToString() to not depend on refs count and look simpler

This commit is contained in:
Wojtek Figat
2021-06-10 15:58:32 +02:00
parent 101e803ca6
commit 82a39e5d98

View File

@@ -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()