Merge "Remove unused mergeChangeQueue method" into feature/zuulv3

This commit is contained in:
Jenkins 2017-03-07 00:45:50 +00:00 committed by Gerrit Code Review
commit 14c6c5a3ec
1 changed files with 0 additions and 6 deletions

View File

@ -305,12 +305,6 @@ class ChangeQueue(object):
item.item_ahead.items_behind.append(item)
return True
def mergeChangeQueue(self, other):
for project in other.projects:
self.addProject(project)
self.window = min(self.window, other.window)
# TODO merge semantics
def isActionable(self, item):
if self.window:
return item in self.queue[:self.window]