Skip to content

Commit

Permalink
Fixing checkstyle.
Browse files Browse the repository at this point in the history
  • Loading branch information
alemdomarco committed Nov 18, 2018
1 parent a824ba6 commit e94211d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
15 changes: 10 additions & 5 deletions src/main/java/com/amihaiemil/docker/ListedVolumes.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,22 @@

import java.net.URI;

/**
* Listed volumes.
* @author Marco Teixeira (marcoo.teixeira@gmail.com)
* @version $Id$
* @since 0.0.6
*/
public class ListedVolumes extends RtVolumes {

/**
* Ctor.
*
* @param client The http client.
* @param uri The URI for this Images API.
* @param dkr The docker entry point.
* @checkstyle ParameterNumber (10 lines)
* @param uri The URI for this Images API.
* @param dkr The docker entry point.
* @checkstyle ParameterNumber (2 lines)
*/
ListedVolumes(HttpClient client, URI uri, Docker dkr) {
ListedVolumes(final HttpClient client, final URI uri, final Docker dkr) {
super(client, uri, dkr);
}
}
6 changes: 6 additions & 0 deletions src/main/java/com/amihaiemil/docker/RtVolumes.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@

import java.net.URI;

/**
* Runtime {@link Volumes}.
* @author Marco Teixeira (marcoo.teixeira@gmail.com)
* @version $Id$
* @since 0.0.6
*/
public abstract class RtVolumes implements Volumes {
/**
* Apache HttpClient which sends the requests.
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/amihaiemil/docker/Volumes.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
* @author Mihai Andronache (amihaiemil@gmail.com)
* @version $Id$
* @since 0.0.1
* @todo #169:30min Extend Iterable of Volumes to and continue implementing the rest of the operations
* for the volume.
* @todo #169:30min Extend Iterable of Volumes to and
* continue implementing the rest of the operations for the volume.
*/
public interface Volumes {
}

0 comments on commit e94211d

Please sign in to comment.