summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1')
-rw-r--r--lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm14
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1 b/lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1
index 38c02cc26a..a66c6423e6 100644
--- a/lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1
+++ b/lib/ansible/module_utils/powershell/Ansible.ModuleUtils.SID.psm1
@@ -44,10 +44,6 @@ Function Convert-ToSID {
$domain = $account_name_split[0]
}
$username = $account_name_split[1]
- } elseif ($account_name -like "*@*") {
- $account_name_split = $account_name -split "@"
- $domain = $account_name_split[1]
- $username = $account_name_split[0]
} else {
$domain = $null
$username = $account_name