for (int i = 0; i < firstPage.size(); i++) {
TranscriptLine line = new TranscriptLine(firstPage.get(i));
if (!line.isEmpty()) {
if (line.fullText().endsWith(",") || line.fullText().endsWith(", Acting")) {
// Combine two lines into one; corrects formatting. i.e. 123096.v1
TranscriptLine nextLine = getNextLine(firstPage, i);
if (nextLine.fullText().trim().equals("President") || nextLine.fullText().trim().equals("Acting President")) {
line = new TranscriptLine(line.fullText() + " " + nextLine.fullText().trim());
// Skip next line since we combined it with the previous line.