Skip to content

Commit

Permalink
Obsolete method removed, getAllSourceStamps not as generator
Browse files Browse the repository at this point in the history
  • Loading branch information
hborkhuis committed May 25, 2012
1 parent 87ca041 commit abf3e2b
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions master/buildbot/process/build.py
Expand Up @@ -97,15 +97,8 @@ def getSourceStamp(self, codebase=''):
return source
return None

def getSourceStampSetId(self):
if self.sources:
return self.sources[0].sourcestampsetid
else:
return None

def getAllSourceStamps(self):
for s in self.sources:
yield s
return list(self.sources)

def allChanges(self):
for s in self.sources:
Expand Down

0 comments on commit abf3e2b

Please sign in to comment.