Skip to content

Commit d1ea20f

Browse files
committed
Merge pull request docker-java#126 from andre1987/fixing-NPE-exec-start
Fixed NPE on ExecStartCmdImpl.
2 parents 327e5d1 + 421a873 commit d1ea20f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/github/dockerjava/core/command/ExecStartCmdImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public ExecStartCmd withDetach(boolean detach) {
4949
@Override
5050
public ExecStartCmd withTty(boolean tty) {
5151
this.tty = tty;
52-
return null;
52+
return this;
5353
}
5454

5555
@Override

0 commit comments

Comments
 (0)