Changed 1 variable name

This commit is contained in:
U-BASIS\dsmyda 2018-09-10 15:51:34 -04:00
parent 169fb9928f
commit ddd923add5

View File

@ -302,12 +302,12 @@ public class SqliteTextExtractor extends ContentTextExtractor {
public String toString() { public String toString() {
StringBuilder outputTable = new StringBuilder(charactersAdded); StringBuilder outputTable = new StringBuilder(charactersAdded);
int[] colMaxWidths = getMaxWidthPerColumn(); int[] colMaxWidths = getMaxWidthPerColumn();
int headerLength = 0; int borderLength = 0;
Iterator<String[]> rowIterator = rows.iterator(); Iterator<String[]> rowIterator = rows.iterator();
if (rowIterator.hasNext()) { if (rowIterator.hasNext()) {
//Length of the header defines the table boundaries //Length of the header defines the table boundaries
headerLength = appendFormattedHeader(rowIterator.next(), borderLength = appendFormattedHeader(rowIterator.next(),
colMaxWidths, outputTable); colMaxWidths, outputTable);
while (rowIterator.hasNext()) { while (rowIterator.hasNext()) {
@ -315,7 +315,7 @@ public class SqliteTextExtractor extends ContentTextExtractor {
} }
outputTable.insert(0, tableName); outputTable.insert(0, tableName);
outputTable.append(createBorder(headerLength)); outputTable.append(createBorder(borderLength));
outputTable.append(NEW_LINE); outputTable.append(NEW_LINE);
} }
@ -367,14 +367,14 @@ public class SqliteTextExtractor extends ContentTextExtractor {
appendFormattedRow(row, colMaxWidths, outputTable); appendFormattedRow(row, colMaxWidths, outputTable);
//Printable table dimensions are equal to the length of the header minus //Printable table dimensions are equal to the length of the header minus
//the number of escape sequences used to for formatting. //the number of escape sequences used to for formatting.
int barLength = outputTable.length() - ESCAPE_SEQUENCES; int borderLength = outputTable.length() - ESCAPE_SEQUENCES;
String border = createBorder(barLength); String border = createBorder(borderLength);
//Surround the header with borders above and below. //Surround the header with borders above and below.
outputTable.insert(0, border); outputTable.insert(0, border);
outputTable.append(border); outputTable.append(border);
return barLength; return borderLength;
} }
} }
} }