UKismetTextLibrary deprecated? (5.2)

I am getting an error that UKismetTextLibrary is deprecated but it doesn’t appear to show on the documentation?

Code:

if (TextInput)
	{
		TextInput->SetIsEnabled(bEnableInput);
		TextInput->SetText(UKismetTextLibrary::Conv_FloatToText(
			FilterValue(Value),
			HalfToEven,
			false,
			true,
			1,
			324,
			0,
			2
		));
	}

Error:

warning C4996: 'UKismetTextLibrary::Conv_FloatToText': This method has been deprecated and will be removed. Please update your code to the new API before upgrading to the next release, otherwise your project will no longer compile.

I don’t see any documentation saying its deprecated? 5.2 Documentation: UKismetTextLibrary 5.2 Documentation

I am very amateur in C++ and just trying to upgrade an old plugin.

Any advice would be appreciated! Thank you!

UKismetTextLibrary is just a collection of helpful methods. Go inside Conv_FloatToText method to see what it is doing for you. It most likely just redirects your call to some other method with minor changes. Extract that code and replace your call to UKismetTextLibrary::Conv_FloatToText with that. Also check out comments there. Epic usually points you to updated “recommended” method when one goes obsolete but not always.