Skip to content

Commit

Permalink
fix readArray name.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpe7s committed Sep 10, 2024
1 parent e527432 commit 5b30a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/software/sava/core/borsh/Borsh.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ static byte[] read(final byte[] data, final int offset) {
return bytes;
}

static byte[] read(final byte[] bytes, final byte[] data, final int offset) {
static byte[] readArray(final byte[] bytes, final byte[] data, final int offset) {
System.arraycopy(data, offset, data, 0, bytes.length);
return bytes;
}
Expand Down

0 comments on commit 5b30a07

Please sign in to comment.