Skip to content

Commit

Permalink
fix: Bump version ->1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Col-E committed Apr 8, 2022
1 parent 08ff979 commit 3240a1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.coley</groupId>
<artifactId>lljzip</artifactId>
<version>1.1.0</version>
<version>1.1.1</version>

<properties>
<junit.version>5.8.2</junit.version>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/software/coley/llzip/util/BufferData.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ public byte get(long position) {
@Override
public void get(long position, byte[] b, int off, int len) {
ByteBuffer buffer = this.buffer;
buffer.slice()
((ByteBuffer) buffer.slice()
.order(buffer.order())
.position(validate(position))
.position(validate(position)))
.get(b, off, len);
}

Expand Down

0 comments on commit 3240a1b

Please sign in to comment.