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