Expected usage of FObjectAndNameAsStringProxyArchive says to use FinalizeAr, but it doesn't seem to exist

/**
* Implements a proxy archive that serializes UObjects and FNames as string data.
*
* Expected use is:
* FArchive* SomeAr = CreateAnAr();
* FObjectAndNameAsStringProxyArchive Ar(*SomeAr);
* SomeObject->Serialize(Ar);
* FinalizeAr(SomeAr);
*
* @anonymous_user_64fde8e1 InInnerArchive The actual FArchive object to serialize normal data types (FStrings, INTs, etc)
*/

At least I can’t find it. Maybe this is an outdated comment? If so, do you need to use something else instead now?

My code seems to work fine without it… :smiley:

Hi there. You are absolutely right, this description is out of time… CreateAnAr() and FinalizeAr(SomeAr) - seems that in older versions they were special methods to create Archive and then clear it up. I think that logic was moved to class members instead of them