Skip to content

Commit e51f61d

Browse files
author
Gary Gregory
committed
Better Javadoc and inline comments.
1 parent f3b4f67 commit e51f61d

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/org/apache/commons/io/input/ReversedLinesFileReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private class FilePart {
5454
private int currentLastBytePos;
5555

5656
/**
57-
* ctor
57+
* Constructs a new instance.
5858
*
5959
* @param no the part number
6060
* @param length its length

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void testDataIntegrityWithBufferedReader(final String fileName, final Str
9090
filePath = Files.copy(filePath, fileSystem.getPath("/" + fileName));
9191
}
9292

93-
// We want to test null Charset in the ReversedLinesFileReader ctor.
93+
// We want to test null Charset in the ReversedLinesFileReaderconstructor.
9494
final Charset charset = charsetName != null ? Charset.forName(charsetName) : null;
9595
try (ReversedLinesFileReader reversedLinesFileReader = blockSize == null
9696
? new ReversedLinesFileReader(filePath, charset)

src/test/java/org/apache/commons/io/test/ThrowOnCloseInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class ThrowOnCloseInputStream extends ProxyInputStream {
2929

3030
/**
31-
* Default ctor.
31+
* Defaultconstructor.
3232
*/
3333
public ThrowOnCloseInputStream() {
3434
super(NullInputStream.INSTANCE);

src/test/java/org/apache/commons/io/test/ThrowOnCloseOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class ThrowOnCloseOutputStream extends ProxyOutputStream {
2929

3030
/**
31-
* Default ctor.
31+
* Defaultconstructor.
3232
*/
3333
public ThrowOnCloseOutputStream() {
3434
super(NullOutputStream.INSTANCE);

src/test/java/org/apache/commons/io/test/ThrowOnCloseReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class ThrowOnCloseReader extends ProxyReader {
2929

3030
/**
31-
* Default ctor.
31+
* Defaultconstructor.
3232
*/
3333
public ThrowOnCloseReader() {
3434
super(NullReader.INSTANCE);

src/test/java/org/apache/commons/io/test/ThrowOnCloseWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public class ThrowOnCloseWriter extends ProxyWriter {
2929

3030
/**
31-
* Default ctor.
31+
* Defaultconstructor.
3232
*/
3333
public ThrowOnCloseWriter() {
3434
super(NullWriter.INSTANCE);

0 commit comments

Comments
 (0)