Fix type of fileOffset to long.

This commit is contained in:
David Kocher
2014-05-05 13:11:54 +02:00
parent fdb891b842
commit df6019accc

View File

@@ -175,7 +175,7 @@ public class RemoteFile
this(0);
}
public RemoteFileInputStream(int fileOffset) {
public RemoteFileInputStream(long fileOffset) {
this.fileOffset = fileOffset;
}