aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2023-10-21 10:34:04 -0400
committerGary Gregory <garydgregory@gmail.com>2023-10-21 10:34:04 -0400
commitcb3b495921619174845979240a6c754261bc8546 (patch)
treecfddfca6e078bb9e57b122651bf3e0c3406a6460
parenta4b936dc98f8d7e44d18493d7ddb5931bbc801fd (diff)
downloadapache-commons-io-cb3b495921619174845979240a6c754261bc8546.tar.gz
Sort members
-rw-r--r--src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java b/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java
index 8ef06c20..d2e969ca 100644
--- a/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java
+++ b/src/test/java/org/apache/commons/io/input/UnsynchronizedBufferedInputStreamTest.java
@@ -56,6 +56,10 @@ public class UnsynchronizedBufferedInputStreamTest {
byte[] ibuf = new byte[BUFFER_SIZE];
+ private Builder builder() {
+ return new UnsynchronizedBufferedInputStream.Builder();
+ }
+
/**
* Sets up the fixture, for example, open a network connection. This method is called before a test is executed.
*
@@ -70,10 +74,6 @@ public class UnsynchronizedBufferedInputStreamTest {
is = builder().setInputStream(isFile).get();
}
- private Builder builder() {
- return new UnsynchronizedBufferedInputStream.Builder();
- }
-
/**
* Tears down the fixture, for example, close a network connection. This method is called after a test is executed.
*