Skip to content

Commit 3db0a87

Browse files
matteo1994Matteo Marras
and
Matteo Marras
authored
Migrate totalSize on RegistryRepositoryTag to support fat images (gitlab4j#843)
Co-authored-by: Matteo Marras <[email protected]>
1 parent c8fb8a5 commit 3db0a87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/gitlab4j/api/models/RegistryRepositoryTag.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class RegistryRepositoryTag {
1212
private String shortRevision;
1313
private String digest;
1414
private Date createdAt;
15-
private Integer totalSize;
15+
private Long totalSize;
1616

1717
public String getName() {
1818
return name;
@@ -70,11 +70,11 @@ public void setCreatedAt(Date createdAt) {
7070
this.createdAt = createdAt;
7171
}
7272

73-
public Integer getTotalSize() {
73+
public Long getTotalSize() {
7474
return totalSize;
7575
}
7676

77-
public void setTotalSize(Integer totalSize) {
77+
public void setTotalSize(Long totalSize) {
7878
this.totalSize = totalSize;
7979
}
8080

0 commit comments

Comments
 (0)