Skip to content

Commit

Permalink
fix type error detected in groovy 3.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadedin committed Jun 29, 2024
1 parent 440ecbb commit f3d8f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/groovy/gngs/VCF.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -905,8 +905,8 @@ class VCF implements Iterable<Variant>, Serializable {
Variant myVariant = this.find(v)
Variant otherVariant = other.find(v)

String [] mySplit = myVariant?.line?.tokenize("\t")
String [] otherSplit = otherVariant?.line?.tokenize("\t")
List<String> mySplit = myVariant?.line?.tokenize("\t")
List<String> otherSplit = otherVariant?.line?.tokenize("\t")

List<String> myGtFields
List<String> otherGtFields
Expand Down

0 comments on commit f3d8f2f

Please sign in to comment.