Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/github/dockerjava/api/model/Info.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class Info {
private String kernelVersion;

@JsonProperty("Labels")
private String Labels;
private String[] Labels;

@JsonProperty("MemoryLimit")
private boolean memoryLimit;
Expand Down Expand Up @@ -140,7 +140,7 @@ public String getKernelVersion() {
return kernelVersion;
}

public String getLabels() {
public String[] getLabels() {
return Labels;
}

Expand Down