From 8a21ae62807c49b890fd677aba74cbed432c0590 Mon Sep 17 00:00:00 2001 From: David Mulder Date: Thu, 19 Jul 2018 12:55:00 -0600 Subject: [PATCH] gpo: apply_map should not be required for gp_ext The apply_map function should not be a requirement to implement the gp_ext class, since only the gp_sec_ext uses it now. Signed-off-by: David Mulder Reviewed-by: Douglas Bagnall Reviewed-by: Aurelien Aptel --- python/samba/gpclass.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/samba/gpclass.py b/python/samba/gpclass.py index 893a419cfbf..f312f9f95a9 100644 --- a/python/samba/gpclass.py +++ b/python/samba/gpclass.py @@ -308,10 +308,6 @@ class gp_ext(object): def process_group_policy(self, deleted_gpo_list, changed_gpo_list): pass - @abstractmethod - def apply_map(self): - pass - @abstractmethod def read(self, policy): pass