comparison mercurial/revlog.py @ 32866:fa247f53f647

revlog: delete dead assignment in addgroup()
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 15 Jun 2017 13:23:21 -0700
parents 19b9fc40cc51
children 8e9b9f020f95
comparison
equal deleted inserted replaced
32865:6e38b4212661 32866:fa247f53f647
1854 this revlog and the node that was added. 1854 this revlog and the node that was added.
1855 """ 1855 """
1856 1856
1857 # track the base of the current delta log 1857 # track the base of the current delta log
1858 content = [] 1858 content = []
1859 node = None
1860 1859
1861 r = len(self) 1860 r = len(self)
1862 end = 0 1861 end = 0
1863 if r: 1862 if r:
1864 end = self.end(r - 1) 1863 end = self.end(r - 1)