Skip to content

Commit

Permalink
Fix: Fix typo in readSetSeekCallback()
Browse files Browse the repository at this point in the history
Bug: #2
  • Loading branch information
zhanghai committed Jun 24, 2024
1 parent 0abfa34 commit 6a2a82a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public static native <T> void readSetOpenCallback(long archive,
public static native <T> void readSetReadCallback(long archive,
@Nullable ReadCallback<T> callback) throws ArchiveException;
public static native <T> void readSetSeekCallback(long archive,
@Nullable SeekCallback<?> callback) throws ArchiveException;
@Nullable SeekCallback<T> callback) throws ArchiveException;
public static native <T> void readSetSkipCallback(long archive,
@Nullable SkipCallback<T> callback) throws ArchiveException;
public static native <T> void readSetCloseCallback(long archive,
Expand Down

0 comments on commit 6a2a82a

Please sign in to comment.