File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/main/java/com/bina/varsim/tools/evaluation Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.bina.varsim</groupId >
6
6
<artifactId >varsim</artifactId >
7
- <version >0.8.5 </version >
7
+ <version >0.8.6 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >varsim</name >
Original file line number Diff line number Diff line change 18
18
import com .fasterxml .jackson .core .JsonGenerator ;
19
19
import com .fasterxml .jackson .databind .ObjectMapper ;
20
20
import com .google .common .collect .ImmutableList ;
21
- import javafx .util .Pair ;
21
+ import org .apache .commons .lang3 .tuple .Pair ;
22
+ import org .apache .commons .lang3 .tuple .ImmutablePair ;
22
23
import org .apache .commons .io .FileUtils ;
23
24
import org .apache .commons .math3 .random .EmpiricalDistribution ;
24
25
import org .apache .commons .math3 .stat .StatUtils ;
@@ -1122,7 +1123,7 @@ public void setNumberOfTrueCorrect(EnumStatsRatioCounter<VariantOverallType> num
1122
1123
}
1123
1124
}
1124
1125
1125
- matchingVariantAndMatchedWholeVariants .add (new Pair <>(variant , matchedWholeVariants ));
1126
+ matchingVariantAndMatchedWholeVariants .add (new ImmutablePair <>(variant , matchedWholeVariants ));
1126
1127
numberOfNewVariants ++;
1127
1128
}
1128
1129
}
You can’t perform that action at this time.
0 commit comments