From 5798145e768c113cc67dc699ccb929c94ed8fcc2 Mon Sep 17 00:00:00 2001 From: Marcel Kronfeld Date: Thu, 25 Feb 2010 15:17:02 +0000 Subject: [PATCH] minor patch --- src/eva2/tools/math/Mathematics.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eva2/tools/math/Mathematics.java b/src/eva2/tools/math/Mathematics.java index e0070568..b133bc13 100644 --- a/src/eva2/tools/math/Mathematics.java +++ b/src/eva2/tools/math/Mathematics.java @@ -1030,8 +1030,8 @@ public class Mathematics { * @return */ public static double[] expandVector(double[] x, int len, double v) { - if (len <= x.length ) { - System.err.println("Error, invalid length in expandVector, expecting l>" + x.length); + if (len <= x.length ) {// not really an error, just perform identity +// System.err.println("Error, invalid length in expandVector, expecting l>" + x.length); return x; } else { double[] expanded = new double[len];