Skip to content

Commit

Permalink
Merge pull request #12 from oclay1st/develop
Browse files Browse the repository at this point in the history
Update Github Action
  • Loading branch information
oclay1st authored Feb 25, 2024
2 parents f857877 + 3ad1a48 commit 7799f83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
git config user.name "GitHub Actions"
- name: Verify
run: |
mvn -Prelease verify
mvn -Prelease verify -Dgpg.skip
- name: Release With Maven
run: |
export GPG_TTY=$(tty)
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/io/github/oclay1st/wfdb/filters/BytesRange.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ public record BytesRange(long start, long end) {

/**
* Constructor of ByteRange
*
* @param start the start byte index can't be less than zero or greater than end index
* @param end the end byte index can't be less than zero or less than start index
*/
public BytesRange {
if (start < 0 || end < 0) {
Expand Down

0 comments on commit 7799f83

Please sign in to comment.