129
132
def add_lines_with_ghosts(self, version_id, parents, lines,
130
133
parent_texts=None, nostore_sha=None, random_id=False,
132
135
"""Add lines to the versioned file, allowing ghosts to be present.
134
137
This takes the same parameters as add_lines and returns the same.
137
140
return self._add_lines_with_ghosts(version_id, parents, lines,
138
parent_texts, nostore_sha, random_id, check_content)
141
parent_texts, nostore_sha, random_id, check_content, left_matching_blocks)
140
143
def _add_lines_with_ghosts(self, version_id, parents, lines, parent_texts,
144
nostore_sha, random_id, check_content, left_matching_blocks):
142
145
"""Helper to do class specific add_lines_with_ghosts."""
143
146
raise NotImplementedError(self.add_lines_with_ghosts)