Skip to content

Commit

Permalink
Fix spotbugs issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Mar 1, 2022
1 parent a2bc624 commit 9a6e06b
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 9a6e06b

Please sign in to comment.