Skip to content

Commit bdb6bb2

Browse files
committed
Javadoc
1 parent 3344bf3 commit bdb6bb2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/java/org/apache/commons/collections4/functors/FunctorUtils.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
*/
3131
final class FunctorUtils {
3232

33+
/**
34+
* Clones the given array or returns null on null input.
35+
*
36+
* @param <T> The array type.
37+
* @param array The array to clone.
38+
* @return The cloned array or null.
39+
*/
3340
private static <T> T[] clone(final T... array) {
3441
return array != null ? array.clone() : null;
3542
}

0 commit comments

Comments
 (0)