Skip to content

Commit 3240a1b

Browse files
committed
fix: Bump version ->1.1.1
1 parent 08ff979 commit 3240a1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.coley</groupId>
88
<artifactId>lljzip</artifactId>
9-
<version>1.1.0</version>
9+
<version>1.1.1</version>
1010

1111
<properties>
1212
<junit.version>5.8.2</junit.version>

src/main/java/software/coley/llzip/util/BufferData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public byte get(long position) {
3333
@Override
3434
public void get(long position, byte[] b, int off, int len) {
3535
ByteBuffer buffer = this.buffer;
36-
buffer.slice()
36+
((ByteBuffer) buffer.slice()
3737
.order(buffer.order())
38-
.position(validate(position))
38+
.position(validate(position)))
3939
.get(b, off, len);
4040
}
4141

0 commit comments

Comments
 (0)