Skip to content

Commit 7879919

Browse files
Fix javadoc
1 parent e79f3e2 commit 7879919

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/jdk.jpackage/share/classes/jdk/jpackage/internal/util/CollectionUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static <T extends B, B, C extends Collection<T>> C toCollectionUBW(Collec
6767
* Converts the given collection to {@link Set}.
6868
*
6969
* @param <T> the type of elements in this output collection
70-
* @param v the input collection. Null is permitted.
70+
* @param col the input collection. Null is permitted.
7171
* @return the input collection if it is of type {@link Set} or a new
7272
* {@link Set} instance created from the input collection
7373
*/

src/jdk.jpackage/share/classes/jdk/jpackage/internal/util/PathGroup.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public void copy(PathGroup dst, CopyOption ...options) throws IOException {
242242
}
243243

244244
/**
245-
* Similar to {@link #copy(PathGroup)} but moves files/directories instead of
245+
* Similar to {@link #copy(PathGroup, CopyOption...)} but moves files/directories instead of
246246
* copying.
247247
*
248248
* @param dst the destination path group
@@ -255,7 +255,7 @@ public void move(PathGroup dst, CopyOption ...options) throws IOException {
255255
}
256256

257257
/**
258-
* Similar to {@link #copy(PathGroup)} but uses the given handler to transform
258+
* Similar to {@link #copy(PathGroup, CopyOption...)} but uses the given handler to transform
259259
* paths instead of coping.
260260
*
261261
* @param dst the destination path group

0 commit comments

Comments
 (0)