We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a4a9a8 commit 3084903Copy full SHA for 3084903
src/main/java/htsjdk/variant/vcf/VCFUtils.java
@@ -48,11 +48,6 @@
48
public class VCFUtils {
49
50
private static final Pattern INF_OR_NAN_PATTERN = Pattern.compile("^(?<sign>[-+]?)((?<inf>(INF|INFINITY))|(?<nan>NAN))$", Pattern.CASE_INSENSITIVE);
51
- private static final boolean DEFAULT_VCF_STRICT_VERSION_VALIDATION = true;
52
-
53
- // a global mutable static - is there an alternative ?
54
- // there isn't any other reasonable place to keep this state
55
- private static boolean vcfStrictVersionValidation = true;
56
57
/**
58
* Determine if strict VCF version validation is enabled. Defaults to true. Strict version validation
0 commit comments