From 6a2c7072c6e2e022b6893a9c557faaa68b6cb08b Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Tue, 8 Nov 2011 22:50:30 +0000 Subject: Remove duplicate method The real implementation of _get_view_builder() is at the bottom of the class Change-Id: I7b1fb4acb51de00b542093ae54d42b1b73083063 --- nova/api/openstack/flavors.py | 3 --- 1 file changed, 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 = {} -- cgit