mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Remove deprecated stringRemoveWhitespace (#5483)
This commit is contained in:
parent
a50cf4e300
commit
170cd8e5de
@ -163,7 +163,6 @@ PREP(statusEffect_sendEffects);
|
||||
PREP(statusEffect_set);
|
||||
PREP(stringCompare);
|
||||
PREP(stringToColoredText);
|
||||
PREP(stringRemoveWhiteSpace);
|
||||
PREP(switchToGroupSide);
|
||||
PREP(throttledPublicVariable);
|
||||
PREP(toBin);
|
||||
|
@ -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 ""
|
Loading…
Reference in New Issue
Block a user