Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
3db0a87c
Unverified
Commit
3db0a87c
authored
Dec 09, 2022
by
matteo1994
Committed by
GitHub
Dec 09, 2022
Browse files
Migrate totalSize on RegistryRepositoryTag to support fat images (#843)
Co-authored-by:
Matteo Marras
<
matteo.marras@ti8m.ch
>
parent
c8fb8a5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/RegistryRepositoryTag.java
View file @
3db0a87c
...
...
@@ -12,7 +12,7 @@ public class RegistryRepositoryTag {
private
String
shortRevision
;
private
String
digest
;
private
Date
createdAt
;
private
Integer
totalSize
;
private
Long
totalSize
;
public
String
getName
()
{
return
name
;
...
...
@@ -70,11 +70,11 @@ public class RegistryRepositoryTag {
this
.
createdAt
=
createdAt
;
}
public
Integer
getTotalSize
()
{
public
Long
getTotalSize
()
{
return
totalSize
;
}
public
void
setTotalSize
(
Integer
totalSize
)
{
public
void
setTotalSize
(
Long
totalSize
)
{
this
.
totalSize
=
totalSize
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment