Skip to content

Commit 4950958

Browse files
author
Niall Pemberton
committed
Fix test javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1003659 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8bb7181 commit 4950958

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void testIsFileNewerImaginaryFile() {
107107
*
108108
* @param description describes the tested situation
109109
* @param file the file of which the last modification date is compared
110-
* @param timeMillis the time reference measured in milliseconds since the epoch
110+
* @param time the time reference measured in milliseconds since the epoch
111111
*
112112
* @see FileUtils#isFileNewer(File, long)
113113
* @see FileUtils#isFileNewer(File, Date)

src/test/org/apache/commons/io/filefilter/FileFilterTestCase.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ public void testMagicNumberFileFilterStringOffset() throws Exception {
10601060
}
10611061

10621062
/**
1063-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1063+
* Test method for {@link FileFilterUtils#filter(IOFileFilter, File...)}
10641064
* that tests that the method properly filters files from the list.
10651065
*/
10661066
public void testFilterArray() throws Exception {
@@ -1076,7 +1076,7 @@ public void testFilterArray() throws Exception {
10761076
}
10771077

10781078
/**
1079-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1079+
* Test method for {@link FileFilterUtils#filter(IOFileFilter, java.lang.Iterable)}
10801080
* that tests that the method properly filters files from the list.
10811081
*/
10821082
public void testFilterArray_fromList() throws Exception {
@@ -1093,7 +1093,7 @@ public void testFilterArray_fromList() throws Exception {
10931093
}
10941094

10951095
/**
1096-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1096+
* Test method for {@link FileFilterUtils#filter(IOFileFilter, File...)}
10971097
* that tests <code>null</code> parameters and <code>null</code> elements
10981098
* in the provided list.
10991099
*/
@@ -1120,7 +1120,7 @@ public void testFilterArrayNullParameters() throws Exception {
11201120
}
11211121

11221122
/**
1123-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1123+
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, java.lang.Iterable)}
11241124
* that tests that the method properly filters files from the list.
11251125
*/
11261126
public void testFilterList() throws Exception {
@@ -1137,7 +1137,7 @@ public void testFilterList() throws Exception {
11371137
}
11381138

11391139
/**
1140-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1140+
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, File...)}
11411141
* that tests that the method properly filters files from the list.
11421142
*/
11431143
public void testFilterList_fromArray() throws Exception {
@@ -1153,7 +1153,7 @@ public void testFilterList_fromArray() throws Exception {
11531153
}
11541154

11551155
/**
1156-
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, List)}
1156+
* Test method for {@link FileFilterUtils#filterList(IOFileFilter, java.lang.Iterable)}
11571157
* that tests <code>null</code> parameters and <code>null</code> elements
11581158
* in the provided list.
11591159
*/
@@ -1178,7 +1178,7 @@ public void testFilterListNullParameters() {
11781178
}
11791179

11801180
/**
1181-
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, Set)}
1181+
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, java.lang.Iterable)}
11821182
* that tests that the method properly filters files from the set.
11831183
*/
11841184
public void testFilterSet() throws Exception {
@@ -1195,7 +1195,7 @@ public void testFilterSet() throws Exception {
11951195
}
11961196

11971197
/**
1198-
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, Set)}
1198+
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, File...)}
11991199
* that tests that the method properly filters files from the set.
12001200
*/
12011201
public void testFilterSet_fromArray() throws Exception {
@@ -1211,7 +1211,7 @@ public void testFilterSet_fromArray() throws Exception {
12111211
}
12121212

12131213
/**
1214-
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, Set)}
1214+
* Test method for {@link FileFilterUtils#filterSet(IOFileFilter, java.lang.Iterable)}
12151215
* that tests <code>null</code> parameters and <code>null</code> elements
12161216
* in the provided set.
12171217
*/

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public BoundedInputStreamTest(String name) {
3434
}
3535

3636
/**
37-
* Test {@link BoundedInputStream#read()).
37+
* Test {@link BoundedInputStream#read()}.
3838
*/
3939
public void testReadSingle() throws Exception {
4040
BoundedInputStream bounded = null;
@@ -64,7 +64,7 @@ public void testReadSingle() throws Exception {
6464
}
6565

6666
/**
67-
* Test {@link BoundedInputStream#read(byte[], int, int))).
67+
* Test {@link BoundedInputStream#read(byte[], int, int)}.
6868
*/
6969
public void testReadArray() throws Exception {
7070

0 commit comments

Comments
 (0)