Skip to content

Commit

Permalink
+ ersten Punkt der LastPlyFailre Iterationen mit 0 statt 1 bezeichnet
Browse files Browse the repository at this point in the history
  • Loading branch information
AndiMb committed Jul 6, 2024
1 parent 62d3b6c commit bf2efc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ private void calculationButtonActionPerformed(java.awt.event.ActionEvent evt) {/
public void run() {
minResDataset.removeAllSeries();
minResDataset.addSeries(new XYSeries(NbBundle.getMessage(CLT_LastPlyFailureTopComponent.class, "LastPlyFailureChart.yaxis.caption")));
int intNum = 1;
int intNum = 0;
for (Double rfMin : lpfResult.getRf_min()) {
minResDataset.getSeries(0).add(intNum++, rfMin);
}
Expand Down

0 comments on commit bf2efc1

Please sign in to comment.