Remove unnecessary console output

This commit is contained in:
Manuel Thalmann 2024-08-09 01:22:51 +02:00
parent 66786ad5cd
commit ebf7408858

View file

@ -61,7 +61,6 @@ $null = New-Module {
[System.Xml.XmlNode] $association = $null;
$document = Get-DefaultAppAssociations;
$candidates = $document.SelectNodes((& $getSelector $Identifier));
Write-Host "Number of potential associations: $($candidates.Count)"
if ($candidates.Count -eq 1) {
$association = $candidates[0];