From fb0eb9ecf4819cda7667990c7e91488d63f599e3 Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Thu, 31 May 2012 21:45:26 +0000 Subject: Finish removing xenapi.HelperBase class The XenAPI driver has the concept of helper classes. All methods have been classmethods and the classes themselves are never instantiated. As a result, they only add an extra namespace lookup and provide no value. This is the last patch in this series Change-Id: I314dfa6555d38be9b0988270b3367c4ae86b19bb --- nova/virt/xenapi/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nova/virt/xenapi/__init__.py b/nova/virt/xenapi/__init__.py index 0e93adcda..d9abe54c5 100644 --- a/nova/virt/xenapi/__init__.py +++ b/nova/virt/xenapi/__init__.py @@ -18,9 +18,3 @@ :mod:`xenapi` -- Nova support for XenServer and XCP through XenAPI ================================================================== """ - - -class HelperBase(object): - """ - The base for helper classes. - """ -- cgit