|
@@ -131,7 +131,7 @@ public class ResultDataProxy {
|
|
|
float threshold = 0.001f;
|
|
|
Map<String, Float> thresholdMap = new HashMap<>();
|
|
|
for (Map.Entry<String, Float> entry : map.entrySet()) {
|
|
|
- if (entry.getValue() >= threshold) {
|
|
|
+ if (!"null".equals(entry.getKey()) && entry.getValue() >= threshold) {
|
|
|
thresholdMap.put(entry.getKey(), entry.getValue());
|
|
|
}
|
|
|
}
|