Commit 26f4b4de authored by Martin Dale Lyness's avatar Martin Dale Lyness
Browse files

Support larger file sizes by expanding the size type to a Long.

parent 55807bbf
......@@ -5,7 +5,7 @@ import org.gitlab4j.api.utils.JacksonJson;
public class ArtifactsFile {
private String filename;
private Integer size;
private Long size;
public String getFilename() {
return filename;
......@@ -15,11 +15,11 @@ public class ArtifactsFile {
this.filename = filename;
}
public Integer getSize() {
public Long getSize() {
return size;
}
public void setSize(Integer size) {
public void setSize(Long size) {
this.size = size;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment