Removed vestigal code.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1522637 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2013-09-12 15:56:02 +00:00
parent a01407b7c1
commit fb6f2aec92
1 changed files with 0 additions and 1 deletions

View File

@ -238,7 +238,6 @@ public class Combinations implements Iterable<int[]> {
// Copy return value (prepared by last activation) // Copy return value (prepared by last activation)
final int[] ret = new int[k]; final int[] ret = new int[k];
System.arraycopy(c, 1, ret, 0, k); System.arraycopy(c, 1, ret, 0, k);
//final int[] ret = MathArrays.copyOf(c, k + 1);
// Prepare next iteration // Prepare next iteration
// T2 and T6 loop // T2 and T6 loop