icinga-powershell-framework/lib/core/tools/Remove-IcingaHashtableItem.psm1

16 lines
228 B
PowerShell
Raw Normal View History

function Remove-IcingaHashtableItem()
{
param(
$Hashtable,
$Key
);
if ($null -eq $Hashtable) {
return;
}
if ($Hashtable.ContainsKey($Key)) {
$Hashtable.Remove($Key);
}
}