From 6a076febc4f74c5d7bc024aa36e599351b71e70c Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 22 Aug 2013 16:38:19 +0200 Subject: [PATCH] plugin: remove is_enabled Sad story, but this isn't used by anything. Change-Id: I2b23e180b9b77d90bb81503083a16c2ba2d4f0b8 --- ceilometer/plugin.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/ceilometer/plugin.py b/ceilometer/plugin.py index f19807dd2..834027c2c 100644 --- a/ceilometer/plugin.py +++ b/ceilometer/plugin.py @@ -36,13 +36,6 @@ class PluginBase(object): """Base class for all plugins. """ - @staticmethod - def is_enabled(): - """Return boolean indicating whether this plugin should - be enabled and used by the caller. - """ - return True - class NotificationBase(PluginBase): """Base class for plugins that support the notification API."""