Removed old DEBUG code

master
Harald Wolff 2018-02-22 17:11:14 +01:00
parent c545d64984
commit 8cebc3644c
1 changed files with 1 additions and 4 deletions

View File

@ -424,9 +424,7 @@ public class JDiagram extends JComponent implements PlotProviderListener, Bounde
public void autoscale(){
int ordinate;
Double[] max,min;
System.err.println("AutoScale...");
max = new Double[this.plotProvider.getMaxOrdinate()+1];
min = new Double[this.plotProvider.getMaxOrdinate()+1];
@ -454,7 +452,6 @@ public class JDiagram extends JComponent implements PlotProviderListener, Bounde
min[i] = 0.0;
if (max[i] == null)
max[i] = 1.0;
System.err.format("MIN: %f Max: %f\n", min[i], max[i]);
this.ordinateViews[i].scaler.scale(min[i], max[i], autoScaleMargins);
}