Bugfix for cached quals

This commit is contained in:
Mark DePristo 2011-09-02 21:13:28 -04:00
parent 03aa04e37c
commit 048202d18e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class QualityUtils {
private static double qualToErrorProbCache[] = new double[256];
static {
for (byte i = 0; i < 256; i++) qualToErrorProbCache[i] = qualToErrorProbRaw(i);
for (int i = 0; i < 256; i++) qualToErrorProbCache[i] = qualToErrorProbRaw((byte)i);
}
/**