Skip to content

Commit f729612

Browse files
committed
Use final.
1 parent 057d3b2 commit f729612

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/io/output/DeferredFileOutputStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static IntStream data() {
6666
*/
6767
private final byte[] testBytes = testString.getBytes();
6868

69-
void assertContentsEquals(DeferredFileOutputStream out) throws IOException {
69+
void assertContentsEquals(final DeferredFileOutputStream out) throws IOException {
7070
try (InputStream is = out.toInputStream()) {
7171
assertArrayEquals(testBytes, IOUtils.toByteArray(is));
7272
}

0 commit comments

Comments
 (0)