Remove script functions marked as unused (6.1 deprecations)

This commit is contained in:
Tim Wojtulewicz 2023-06-13 15:03:03 -07:00 committed by Tim Wojtulewicz
parent 4229af6820
commit 7a867d52e2
8 changed files with 4 additions and 96 deletions

View file

@ -135,10 +135,3 @@ function remove_pending_cmd(pc: PendingCmds, ca: CmdArg): bool
else
return F;
}
function pop_pending_cmd(pc: PendingCmds, reply_code: count, reply_msg: string): CmdArg &deprecated="Remove in v6.1. Usage testing indicates this function is unused."
{
local ca = get_pending_cmd(pc, reply_code, reply_msg);
remove_pending_cmd(pc, ca);
return ca;
}