We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8fb8a5 commit 3db0a87Copy full SHA for 3db0a87
src/main/java/org/gitlab4j/api/models/RegistryRepositoryTag.java
@@ -12,7 +12,7 @@ public class RegistryRepositoryTag {
12
private String shortRevision;
13
private String digest;
14
private Date createdAt;
15
- private Integer totalSize;
+ private Long totalSize;
16
17
public String getName() {
18
return name;
@@ -70,11 +70,11 @@ public void setCreatedAt(Date createdAt) {
70
this.createdAt = createdAt;
71
}
72
73
- public Integer getTotalSize() {
+ public Long getTotalSize() {
74
return totalSize;
75
76
77
- public void setTotalSize(Integer totalSize) {
+ public void setTotalSize(Long totalSize) {
78
this.totalSize = totalSize;
79
80
0 commit comments