##// END OF EJS Templates
bugzilla: remove superfluous pass statements
Augie Fackler -
r34367:00cf44b7 default
parent child Browse files
Show More
@@ -412,11 +412,9 b' class bzaccess(object):'
412
412
413 def filter_real_bug_ids(self, bugs):
413 def filter_real_bug_ids(self, bugs):
414 '''remove bug IDs that do not exist in Bugzilla from bugs.'''
414 '''remove bug IDs that do not exist in Bugzilla from bugs.'''
415 pass
416
415
417 def filter_cset_known_bug_ids(self, node, bugs):
416 def filter_cset_known_bug_ids(self, node, bugs):
418 '''remove bug IDs where node occurs in comment text from bugs.'''
417 '''remove bug IDs where node occurs in comment text from bugs.'''
419 pass
420
418
421 def updatebug(self, bugid, newstate, text, committer):
419 def updatebug(self, bugid, newstate, text, committer):
422 '''update the specified bug. Add comment text and set new states.
420 '''update the specified bug. Add comment text and set new states.
@@ -424,7 +422,6 b' class bzaccess(object):'
424 If possible add the comment as being from the committer of
422 If possible add the comment as being from the committer of
425 the changeset. Otherwise use the default Bugzilla user.
423 the changeset. Otherwise use the default Bugzilla user.
426 '''
424 '''
427 pass
428
425
429 def notify(self, bugs, committer):
426 def notify(self, bugs, committer):
430 '''Force sending of Bugzilla notification emails.
427 '''Force sending of Bugzilla notification emails.
@@ -432,7 +429,6 b' class bzaccess(object):'
432 Only required if the access method does not trigger notification
429 Only required if the access method does not trigger notification
433 emails automatically.
430 emails automatically.
434 '''
431 '''
435 pass
436
432
437 # Bugzilla via direct access to MySQL database.
433 # Bugzilla via direct access to MySQL database.
438 class bzmysql(bzaccess):
434 class bzmysql(bzaccess):
General Comments 0
You need to be logged in to leave comments. Login now