Show More
@@ -1442,7 +1442,7 b' class revlog(object):' | |||||
1442 | ifh.write(data[1]) |
|
1442 | ifh.write(data[1]) | |
1443 | self.checkinlinesize(transaction, ifh) |
|
1443 | self.checkinlinesize(transaction, ifh) | |
1444 |
|
1444 | |||
1445 |
def addgroup(self, |
|
1445 | def addgroup(self, cg, linkmapper, transaction, addrevisioncb=None): | |
1446 | """ |
|
1446 | """ | |
1447 | add a delta group |
|
1447 | add a delta group | |
1448 |
|
1448 | |||
@@ -1479,7 +1479,7 b' class revlog(object):' | |||||
1479 | # loop through our set of deltas |
|
1479 | # loop through our set of deltas | |
1480 | chain = None |
|
1480 | chain = None | |
1481 | while True: |
|
1481 | while True: | |
1482 |
chunkdata = |
|
1482 | chunkdata = cg.deltachunk(chain) | |
1483 | if not chunkdata: |
|
1483 | if not chunkdata: | |
1484 | break |
|
1484 | break | |
1485 | node = chunkdata['node'] |
|
1485 | node = chunkdata['node'] |
General Comments 0
You need to be logged in to leave comments.
Login now