From 572b7e3415b3ffa8770a8a89b9fb645ca2f11c88 Mon Sep 17 00:00:00 2001 From: Albert Cardona Date: Fri, 17 Apr 2009 01:23:48 +0200 Subject: [PATCH] Commented out debugging messages from lenscorrection --- lenscorrection/NonLinearTransform.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lenscorrection/NonLinearTransform.java b/lenscorrection/NonLinearTransform.java index 440bf610..74d89466 100644 --- a/lenscorrection/NonLinearTransform.java +++ b/lenscorrection/NonLinearTransform.java @@ -136,13 +136,13 @@ public class NonLinearTransform implements mpicbg.trakem2.transform.CoordinateTr beta[i][1] = Double.parseDouble(fields[c]); c++; } - System.out.println("c: " + c); + //System.out.println("c: " + c); for (int i=0; i < length; i++){ normMean[i] = Double.parseDouble(fields[c]); c++; } - System.out.println("c: " + c); + //System.out.println("c: " + c); for (int i=0; i < length; i++){ normVar[i] = Double.parseDouble(fields[c]); c++; @@ -150,7 +150,7 @@ public class NonLinearTransform implements mpicbg.trakem2.transform.CoordinateTr width = Integer.parseInt(fields[c]); c++; height = Integer.parseInt(fields[c]); c++; - System.out.println("c: " + c); + //System.out.println("c: " + c); } else throw new NumberFormatException( "Inappropriate parameters for " + this.getClass().getCanonicalName() ); -- 2.11.4.GIT