NumberFormatException fix
[arvados.git] / sdk / java-v2 / src / main / java / org / arvados / client / logic / collection / FileToken.java
index b41ccd3cddcca658489ed4cf0a8319b99a4619f8..2f50502824c735cd4f3a354e78ebd4afbbef0644 100644 (file)
@@ -13,7 +13,7 @@ import org.arvados.client.common.Characters;
 public class FileToken {
 
     private int filePosition;
-    private int fileSize;
+    private long fileSize;
     private String fileName;
     private String path;
 
@@ -46,7 +46,7 @@ public class FileToken {
         return this.filePosition;
     }
 
-    public int getFileSize() {
+    public long getFileSize() {
         return this.fileSize;
     }