Skip to content

Commit bbb4c88

Browse files
committed
No need for these helper methods to be public
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1470357 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5f3e1ce commit bbb4c88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public void testMarkSupported() throws Exception {
287287
}
288288
}
289289

290-
public void testReadZero(final String csName) throws Exception {
290+
private void testReadZero(final String csName) throws Exception {
291291
final InputStream r = new CharSequenceInputStream("test", csName);
292292
try {
293293
final byte[] bytes = new byte[30];
@@ -349,7 +349,7 @@ public void testSingleByteRead_UTF8() throws IOException {
349349
}
350350

351351
// This is broken for charsets that don't map each char to a byte
352-
public void testSkip(final String csName) throws Exception {
352+
private void testSkip(final String csName) throws Exception {
353353
final InputStream r = new CharSequenceInputStream("test", csName);
354354
try {
355355
assertEquals(1, r.skip(1));

0 commit comments

Comments
 (0)