summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Erdfelt <johannes.erdfelt@rackspace.com>2011-11-08 22:50:30 +0000
committerJohannes Erdfelt <johannes.erdfelt@rackspace.com>2011-11-08 22:50:30 +0000
commit6a2c7072c6e2e022b6893a9c557faaa68b6cb08b (patch)
treec707ec589137b169db782100ffbf63e19e72354b
parent192b8fd3c9ea226a58f469a5896b75bf48c29d38 (diff)
downloadnova-6a2c7072c6e2e022b6893a9c557faaa68b6cb08b.tar.gz
nova-6a2c7072c6e2e022b6893a9c557faaa68b6cb08b.tar.xz
nova-6a2c7072c6e2e022b6893a9c557faaa68b6cb08b.zip
Remove duplicate method
The real implementation of _get_view_builder() is at the bottom of the class Change-Id: I7b1fb4acb51de00b542093ae54d42b1b73083063
-rw-r--r--nova/api/openstack/flavors.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/nova/api/openstack/flavors.py b/nova/api/openstack/flavors.py
index afc900cce..7280ecbce 100644
--- a/nova/api/openstack/flavors.py
+++ b/nova/api/openstack/flavors.py
@@ -39,9 +39,6 @@ class Controller(object):
items = self._get_flavors(req, is_detail=True)
return dict(flavors=items)
- def _get_view_builder(self, req):
- raise NotImplementedError()
-
def _get_flavors(self, req, is_detail=True):
"""Helper function that returns a list of flavor dicts."""
filters = {}