Skip to content

Commit 72f5b7e

Browse files
committed
Use final
1 parent cfe4477 commit 72f5b7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/io/input/QueueInputStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ void testReadLineByLineFile(final String inputData) throws IOException {
175175
private void doTestReadLineByLine(final String inputData, final InputStream inputStream, final OutputStream outputStream) throws IOException {
176176
final String[] lines = inputData.split("\n");
177177
try (BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, UTF_8))) {
178-
for (String line : lines) {
178+
for (final String line : lines) {
179179
outputStream.write(line.getBytes(UTF_8));
180180
outputStream.write('\n');
181181

0 commit comments

Comments
 (0)