Skip to content

Commit 0a730b8

Browse files
author
Aleksandr Guljajev
committed
Style fixes
1 parent db8cc70 commit 0a730b8

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ public HostConfig() {
8484
public HostConfig(Bind[] binds, Link[] links, LxcConf[] lxcConf, LogConfig logConfig, Ports portBindings,
8585
boolean publishAllPorts, boolean privileged, boolean readonlyRootfs, String[] dns, String[] dnsSearch,
8686
VolumesFrom[] volumesFrom, String containerIDFile, Capability[] capAdd, Capability[] capDrop,
87-
RestartPolicy restartPolicy, String networkMode, Device[] devices, String[] extraHosts, Ulimit[] ulimits, String pidMode) {
87+
RestartPolicy restartPolicy, String networkMode, Device[] devices, String[] extraHosts, Ulimit[] ulimits,
88+
String pidMode) {
8889
this.binds = new Binds(binds);
8990
this.links = new Links(links);
9091
this.lxcConf = lxcConf;
@@ -198,7 +199,9 @@ public int getCpuShares() {
198199
return cpuShares;
199200
}
200201

201-
public String getPidMode() { return pidMode; }
202+
public String getPidMode() {
203+
return pidMode;
204+
}
202205

203206
@JsonIgnore
204207
public void setBinds(Bind... binds) {

0 commit comments

Comments
 (0)