Skip to content

Commit

Permalink
Made ByteChunkProvider.offset a long
Browse files Browse the repository at this point in the history
  • Loading branch information
hierynomus committed Oct 10, 2016
1 parent 2f80a98 commit 2332cea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/hierynomus/smbj/io/ByteChunkProvider.java
Expand Up @@ -24,7 +24,7 @@
public abstract class ByteChunkProvider {
static final int CHUNK_SIZE = 64 * 1024;

private int offset;
private long offset;

public abstract boolean isAvailable();

Expand Down Expand Up @@ -63,7 +63,7 @@ public void writeChunk(Buffer<?> buffer) {
}
}

public int getOffset() {
public long getOffset() {
return offset;
}

Expand Down

0 comments on commit 2332cea

Please sign in to comment.