Unverified Commit 47ef2d9e authored by Gautier de Saint Martin Lacaze's avatar Gautier de Saint Martin Lacaze Committed by GitHub
Browse files

Merge pull request #689 from martin1yness/bugfix/artifactfile_size_to_long

Support larger file sizes by expanding the size type to a Long.
parents 8fe5010a 26f4b4de
...@@ -5,7 +5,7 @@ import org.gitlab4j.api.utils.JacksonJson; ...@@ -5,7 +5,7 @@ import org.gitlab4j.api.utils.JacksonJson;
public class ArtifactsFile { public class ArtifactsFile {
private String filename; private String filename;
private Integer size; private Long size;
public String getFilename() { public String getFilename() {
return filename; return filename;
...@@ -15,11 +15,11 @@ public class ArtifactsFile { ...@@ -15,11 +15,11 @@ public class ArtifactsFile {
this.filename = filename; this.filename = filename;
} }
public Integer getSize() { public Long getSize() {
return size; return size;
} }
public void setSize(Integer size) { public void setSize(Long size) {
this.size = 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