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
47ef2d9e
Unverified
Commit
47ef2d9e
authored
Oct 18, 2021
by
Gautier de Saint Martin Lacaze
Committed by
GitHub
Oct 18, 2021
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/ArtifactsFile.java
View file @
47ef2d9e
...
...
@@ -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
;
}
...
...
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