Skip to content

Commit 9e280ae

Browse files
committed
Add get method
1 parent ef961ea commit 9e280ae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/main/java/com/amihaiemil/docker/Containers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ Container create(
104104

105105
/**
106106
* Get this container.<br><br>
107-
* @param containerId of the Container
108-
* @return this container object.
107+
* @param containerId Id of the Container
108+
* @return This container object.
109109
*/
110110
Container get(final String containerId);
111111
}

src/main/java/com/amihaiemil/docker/RtContainers.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ URI baseUri() {
162162
/**
163163
* Get this container.<br><br>
164164
*
165-
* @param containerId of the Container
166-
* @return this container object.
165+
* @param containerId Id of the Container
166+
* @return This container object.
167167
*/
168168
@Override
169-
public Container get(String containerId) {
169+
public Container get(final String containerId) {
170170
return new RtContainer(
171171
Json.createObjectBuilder().build(),
172172
this.client,

0 commit comments

Comments
 (0)