changeset 34368:00cf44b7baa9

bugzilla: remove superfluous pass statements
author Augie Fackler <augie@google.com>
date Fri, 29 Sep 2017 11:55:26 -0400
parents f61f5af5ed31
children 5adbd3806ef7
files hgext/bugzilla.py
diffstat 1 files changed, 0 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/bugzilla.py	Sat Sep 30 07:52:48 2017 -0700
+++ b/hgext/bugzilla.py	Fri Sep 29 11:55:26 2017 -0400
@@ -412,11 +412,9 @@
 
     def filter_real_bug_ids(self, bugs):
         '''remove bug IDs that do not exist in Bugzilla from bugs.'''
-        pass
 
     def filter_cset_known_bug_ids(self, node, bugs):
         '''remove bug IDs where node occurs in comment text from bugs.'''
-        pass
 
     def updatebug(self, bugid, newstate, text, committer):
         '''update the specified bug. Add comment text and set new states.
@@ -424,7 +422,6 @@
         If possible add the comment as being from the committer of
         the changeset. Otherwise use the default Bugzilla user.
         '''
-        pass
 
     def notify(self, bugs, committer):
         '''Force sending of Bugzilla notification emails.
@@ -432,7 +429,6 @@
         Only required if the access method does not trigger notification
         emails automatically.
         '''
-        pass
 
 # Bugzilla via direct access to MySQL database.
 class bzmysql(bzaccess):