From cce05c1ed2f1da5f0db0121c5eeed6d1e3979ee6 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Wed, 24 Apr 2019 15:29:55 +0530 Subject: [PATCH] Remove redundant method (#55566) Signed-off-by: Abhijeet Kasurde --- lib/ansible/modules/network/nxos/nxos_facts.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/ansible/modules/network/nxos/nxos_facts.py b/lib/ansible/modules/network/nxos/nxos_facts.py index 3c364c6da6a..0f2dc218050 100644 --- a/lib/ansible/modules/network/nxos/nxos_facts.py +++ b/lib/ansible/modules/network/nxos/nxos_facts.py @@ -283,11 +283,6 @@ class Default(FactsBase): return platform_facts - def parse_license_hostid(self, data): - match = re.search(r'License hostid: VDH=(.+)$', data, re.M) - if match: - return match.group(1) - class Config(FactsBase):