Skip to content

Commit 51e3983

Browse files
author
Marcus Linke
committed
Remove public from members as getters are public already
1 parent 04de9fb commit 51e3983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/github/dockerjava/api/model/ResponseItem.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ public static class ProgressDetail implements Serializable {
100100
private static final long serialVersionUID = -1954994695645715264L;
101101

102102
@JsonProperty("current")
103-
public long current;
103+
long current;
104104

105105
@JsonProperty("total")
106-
public long total;
106+
long total;
107107

108108
@JsonProperty("start")
109-
public long start;
109+
long start;
110110

111111
public long getCurrent() {
112112
return current;

0 commit comments

Comments
 (0)