Skip to content

Commit d23f3e9

Browse files
committed
Javadoc
1 parent 86e44f0 commit d23f3e9

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

src/main/java/org/apache/commons/io/FileCleaningTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public boolean delete() {
122122
}
123123

124124
/**
125-
* Return the path.
125+
* Gets the path.
126126
*
127127
* @return the path
128128
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public CharSequenceInputStream(final CharSequence cs, final String charset, fina
219219
}
220220

221221
/**
222-
* Return a lower bound on the number of bytes remaining in the byte stream.
222+
* Gets a lower bound on the number of bytes remaining in the byte stream.
223223
*
224224
* @return the count of bytes that can be read without blocking (or returning EOF).
225225
* @throws IOException if an error occurs (probably not possible).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public long getPosition() {
153153
}
154154

155155
/**
156-
* Return the size this {@link InputStream} emulates.
156+
* Gets the size this {@link InputStream} emulates.
157157
*
158158
* @return The size of the input stream to emulate.
159159
*/

src/main/java/org/apache/commons/io/output/AppendableOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public AppendableOutputStream(final T appendable) {
4646
}
4747

4848
/**
49-
* Return the target appendable.
49+
* Gets the target appendable.
5050
*
5151
* @return the target appendable
5252
*/

src/main/java/org/apache/commons/io/output/AppendableWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public void flush() throws IOException {
108108
}
109109

110110
/**
111-
* Return the target appendable.
111+
* Gets the target appendable.
112112
*
113113
* @return the target appendable
114114
*/

src/test/java/org/apache/commons/io/monitor/CollectionFileListener.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void clear() {
5858
}
5959

6060
/**
61-
* Return the set of changed directories.
61+
* Gets the set of changed directories.
6262
*
6363
* @return Directories which have changed
6464
*/
@@ -67,7 +67,7 @@ public Collection<File> getChangedDirectories() {
6767
}
6868

6969
/**
70-
* Return the set of changed files.
70+
* Gets the set of changed files.
7171
*
7272
* @return Files which have changed
7373
*/
@@ -76,7 +76,7 @@ public Collection<File> getChangedFiles() {
7676
}
7777

7878
/**
79-
* Return the set of created directories.
79+
* Gets the set of created directories.
8080
*
8181
* @return Directories which have been created
8282
*/
@@ -85,7 +85,7 @@ public Collection<File> getCreatedDirectories() {
8585
}
8686

8787
/**
88-
* Return the set of created files.
88+
* Gets the set of created files.
8989
*
9090
* @return Files which have been created
9191
*/
@@ -94,7 +94,7 @@ public Collection<File> getCreatedFiles() {
9494
}
9595

9696
/**
97-
* Return the set of deleted directories.
97+
* Gets the set of deleted directories.
9898
*
9999
* @return Directories which been deleted
100100
*/
@@ -103,7 +103,7 @@ public Collection<File> getDeletedDirectories() {
103103
}
104104

105105
/**
106-
* Return the set of deleted files.
106+
* Gets the set of deleted files.
107107
*
108108
* @return Files which been deleted
109109
*/

0 commit comments

Comments
 (0)