This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new 2d2bb26ba Sort imports 2d2bb26ba is described below commit 2d2bb26ba9cc3b91500b2c4cb245d85649bb98f1 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Sep 14 15:28:42 2024 -0400 Sort imports --- .../java/org/apache/commons/io/input/UnsynchronizedBufferedReader.java | 2 +- .../commons/io/input/MessageDigestCalculatingInputStreamTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedReader.java b/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedReader.java index bab791ac2..fc6a1da2b 100644 --- a/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedReader.java +++ b/src/main/java/org/apache/commons/io/input/UnsynchronizedBufferedReader.java @@ -17,8 +17,8 @@ package org.apache.commons.io.input; -import static org.apache.commons.io.IOUtils.EOF; import static org.apache.commons.io.IOUtils.CR; +import static org.apache.commons.io.IOUtils.EOF; import static org.apache.commons.io.IOUtils.LF; import java.io.BufferedReader; diff --git a/src/test/java/org/apache/commons/io/input/MessageDigestCalculatingInputStreamTest.java b/src/test/java/org/apache/commons/io/input/MessageDigestCalculatingInputStreamTest.java index 46ae17641..385a08b85 100644 --- a/src/test/java/org/apache/commons/io/input/MessageDigestCalculatingInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/MessageDigestCalculatingInputStreamTest.java @@ -19,8 +19,8 @@ package org.apache.commons.io.input; import static org.junit.jupiter.api.Assertions.assertArrayEquals; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotEquals; -import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.api.Assertions.assertThrows; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.ByteArrayInputStream; import java.io.IOException;