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