Check for null entries before adding
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@2099 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
82fd824c4d
commit
b434c1c240
|
|
@ -125,8 +125,10 @@ public abstract class ChipConcordance extends BasicVariantAnalysis {
|
||||||
|
|
||||||
// now we can finally update our truth tables with the truth vs. calls data
|
// now we can finally update our truth tables with the truth vs. calls data
|
||||||
for (int i = 0; i < truthTables.length; i++) {
|
for (int i = 0; i < truthTables.length; i++) {
|
||||||
ConcordanceTruthTable table = truthTables[i];
|
if ( chipEvals[i] != null ) {
|
||||||
table.addEntry(chipEvals[i], eval, ref);
|
ConcordanceTruthTable table = truthTables[i];
|
||||||
|
table.addEntry(chipEvals[i], eval, ref);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue