Remove deprecated stringRemoveWhitespace (#5483)

This commit is contained in:
jonpas 2017-09-07 20:12:47 +02:00 committed by GitHub
parent a50cf4e300
commit 170cd8e5de
2 changed files with 0 additions and 23 deletions

View File

@ -163,7 +163,6 @@ PREP(statusEffect_sendEffects);
PREP(statusEffect_set);
PREP(stringCompare);
PREP(stringToColoredText);
PREP(stringRemoveWhiteSpace);
PREP(switchToGroupSide);
PREP(throttledPublicVariable);
PREP(toBin);

View File

@ -1,22 +0,0 @@
/*
* Author: Glowbal
* Removes whitespace from a string.
*
* Arguments:
* 0: String <STRING>
*
* Return Value:
* String Without Whitespace <STRING>
*
* Example:
* _stringWithoutWhitespace = ["String with whitespace"] call ace_common_fnc_stringRemoveWhiteSpace
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_string"];
ACE_DEPRECATED(QFUNC(stringRemoveWhiteSpace),"3.10.0","CBA_fnc_removeWhitespace");
(_string splitString " ") joinString ""