We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0b31f3 commit f09d0d0Copy full SHA for f09d0d0
docker-java-api/src/main/java/com/github/dockerjava/api/command/CreateContainer.java
@@ -100,6 +100,7 @@ public interface CreateContainer {
100
@JsonProperty("Volumes")
101
@Deprecated
102
@Value.Auxiliary
103
+ @SuppressWarnings("checkstyle:methodname")
104
default Volumes $$_JsonFriendlyVolumes() {
105
Volume[] volumes = getVolumes();
106
return volumes == null
@@ -134,6 +135,7 @@ public interface CreateContainer {
134
135
@JsonProperty("ExposedPorts")
136
137
138
139
default ExposedPorts $$_JsonFriendlyExposedPorts() {
140
ExposedPort[] exposedPorts = getExposedPorts();
141
return exposedPorts == null
0 commit comments