Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
baltzell committed Jan 6, 2025
1 parent ed968cc commit 74fec9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public String toTable() {
for (int i=0; i<validPids.size(); ++i) {
s.append(String.format("%6d",validPids.get(i)));
for (int j=0; j<validPids.size(); ++j) {
if (mcTallies[validPids.indexOf(i)] > 0)
if (mcTallies[i] > 0)
s.append(String.format("%7.4f",get(validPids.get(i),validPids.get(j))));
else
s.append(String.format("%7s","-"));
Expand Down

0 comments on commit 74fec9e

Please sign in to comment.