Skip to content

Commit e94211d

Browse files
committed
Fixing checkstyle.
1 parent a824ba6 commit e94211d

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

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

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,22 @@
2929

3030
import java.net.URI;
3131

32+
/**
33+
* Listed volumes.
34+
* @author Marco Teixeira ([email protected])
35+
* @version $Id$
36+
* @since 0.0.6
37+
*/
3238
public class ListedVolumes extends RtVolumes {
3339

3440
/**
3541
* Ctor.
36-
*
3742
* @param client The http client.
38-
* @param uri The URI for this Images API.
39-
* @param dkr The docker entry point.
40-
* @checkstyle ParameterNumber (10 lines)
43+
* @param uri The URI for this Images API.
44+
* @param dkr The docker entry point.
45+
* @checkstyle ParameterNumber (2 lines)
4146
*/
42-
ListedVolumes(HttpClient client, URI uri, Docker dkr) {
47+
ListedVolumes(final HttpClient client, final URI uri, final Docker dkr) {
4348
super(client, uri, dkr);
4449
}
4550
}

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@
2929

3030
import java.net.URI;
3131

32+
/**
33+
* Runtime {@link Volumes}.
34+
* @author Marco Teixeira ([email protected])
35+
* @version $Id$
36+
* @since 0.0.6
37+
*/
3238
public abstract class RtVolumes implements Volumes {
3339
/**
3440
* Apache HttpClient which sends the requests.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
* @author Mihai Andronache ([email protected])
3131
* @version $Id$
3232
* @since 0.0.1
33-
* @todo #169:30min Extend Iterable of Volumes to and continue implementing the rest of the operations
34-
* for the volume.
33+
* @todo #169:30min Extend Iterable of Volumes to and
34+
* continue implementing the rest of the operations for the volume.
3535
*/
3636
public interface Volumes {
3737
}

0 commit comments

Comments
 (0)