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