Skip to content

Commit

Permalink
Fix java warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanrdoherty committed Dec 6, 2023
1 parent bfcb0fd commit cd7bea4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class BedLine {
private static final String SCORE_FIELD = "0";

private static Integer locationToZeroBased(Integer loc) {
return new Integer(loc.intValue() - 1);
return Integer.valueOf(loc.intValue() - 1);
}

public static List<String> bed6(String featureId, Integer start, Integer end, DeflineBuilder defline, StrandDirection strand){
Expand Down

0 comments on commit cd7bea4

Please sign in to comment.