Hide constructor for utility class.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1054310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2011-01-01 23:11:57 +00:00
parent 938c46195c
commit 1105860d5a
1 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,12 @@ import java.util.ArrayList;
* @version $Revision$ $Date$
*/
public class ArgUtils {
/**
* Private constructor
*/
private ArgUtils() {
}
/**
* Transform a multidimensional array into a one-dimensional list.
*