Skip to content

Commit

Permalink
fixed errorrate metric bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrihinas committed Nov 19, 2014
1 parent 7623866 commit 61205d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private HashMap<String,Integer> calcValues(){
stot += Integer.parseInt(tokenz[7]);
bin += Integer.parseInt(tokenz[8]);
bout += Integer.parseInt(tokenz[9]);
err += Integer.parseInt(tokenz[12]);
err += (!tokenz[12].equals("")) ? Integer.parseInt(tokenz[12]) : 0;
err += Integer.parseInt(tokenz[13]);
err += Integer.parseInt(tokenz[14]);
if (tokenz.length >= 60)
Expand Down

0 comments on commit 61205d5

Please sign in to comment.