We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d1b085 commit fcb8374Copy full SHA for fcb8374
1 file changed
src/test/java/org/apache/commons/csv/perf/PerformanceTest.java
@@ -90,7 +90,7 @@ private void println(final String s) {
90
System.out.println(s);
91
}
92
93
- private long readAll(final BufferedReader in) throws IOException {
+ private long readLines(final BufferedReader in) throws IOException {
94
long count = 0;
95
while (in.readLine() != null) {
96
count++;
@@ -126,7 +126,7 @@ public void testReadBigFile() throws Exception {
126
final long startMillis;
127
try (final BufferedReader in = createBufferedReader()) {
128
startMillis = System.currentTimeMillis();
129
- count = readAll(in);
+ count = readLines(in);
130
131
final long totalMillis = System.currentTimeMillis() - startMillis;
132
bestTime = Math.min(totalMillis, bestTime);
0 commit comments