icinga-powershell-framework/lib/core/tools/Remove-IcingaHashtableItem.psm1
2019-10-05 21:51:39 +02:00

15 lines
228 B
PowerShell

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