802
800
def get_line_list(self, version_ids):
803
801
"""Return the texts of listed versions as a list of strings."""
804
802
for version_id in version_ids:
807
804
text_map, content_map = self._get_content_maps(version_ids)
808
805
return [text_map[v] for v in version_ids]