zvm: Remove dead code

Looks like these two functions have never been used within the nova
codebase.

Change-Id: Icf48ffa61323fb54a73a62d2003ddfea217949e9
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
This commit is contained in:
Stephen Finucane 2019-03-14 17:42:55 +00:00
parent 01ff435c65
commit 6a4e1d4b5b
1 changed files with 0 additions and 15 deletions

View File

@ -106,21 +106,6 @@ class Hypervisor(object):
self._reqh.call('guest_create_network_interface',
name, distro, nets)
def guest_get_definition_info(self, name):
"""Get user direct info
:returns: User direct is server definition, it will be
returned in a string format
"""
return self._reqh.call('guest_get_definition_info', name)
def guest_get_nic_vswitch_info(self, name):
"""Get the nic and vswitch info
:returns: Return the nic and vswitch info in dict
"""
return self._reqh.call('guest_get_nic_vswitch_info', name)
def guest_config_minidisks(self, name, disk_list):
self._reqh.call('guest_config_minidisks', name, disk_list)