Skip to content

Commit

Permalink
Fix spotbugs issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Jun 1, 2023
1 parent 52c2a6b commit b084386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/htsjdk/beta/plugin/HtsVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
public class HtsVersion implements Comparable<HtsVersion> {
/** Sentinel constant to match any version */
public static int ANY_VERSION = -1;
public static final int ANY_VERSION = -1;
/** Sentinel constant used to indicate the newest version available */
public static final HtsVersion NEWEST_VERSION = new HtsVersion(ANY_VERSION, ANY_VERSION, ANY_VERSION);

Expand Down

0 comments on commit b084386

Please sign in to comment.