From 9f704e001daf760de92c590f69582fc7ffd0c0f2 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Thu, 25 Sep 2008 01:52:34 +0000 Subject: 360: Removed Method.get_options() default implementation; cleaned up unit tests for Method --- ipalib/frontend.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 40220074..5573e944 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -617,13 +617,6 @@ class Method(Attribute, Command): Attribute.__init__(self) Command.__init__(self) - def get_options(self): - for option in self.takes_options: - yield option - if self.obj is not None and self.obj.params is not None: - for param in self.obj.params(): - yield param - class Property(Attribute): __public__ = frozenset(( -- cgit