if (seiFeatureList != null) {
for (int i = 0; i < seiFeatureList.size(); i++) {
Annotation checkAnnotation = seiFeatureList.get(i);
if (checkAnnotation instanceof MTOMAnnot) {
MTOMAnnot mtomAnnot = (MTOMAnnot) checkAnnotation;
threshold = mtomAnnot.threshold();
}
}
}
return threshold;
}