Philippe Couton - 2015-03-12

Hello,

I am surprised to get this warning in the following code, since no constant is involved at all:

private double[] getValues() {
    double[] ds = new double[7];
    for (int i = 0; i < 7; ++i) {
        ds[i] = getValue(i);
    }
    return ds;
}

Have I missed something ?

Thanks in advance for any hint.