Skip to content

Commit

Permalink
Break long line into multiple for constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaSha committed Apr 7, 2015
1 parent 454cae8 commit 5483fee
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,14 @@ public class DockerCloud extends Cloud {
private static HashMap<String, Integer> provisioningAmis = new HashMap<String, Integer>();

@DataBoundConstructor
public DockerCloud(String name, List<? extends DockerTemplate> templates, String serverUrl, String containerCapStr, int connectTimeout, int readTimeout, String credentialsId, String version) {
public DockerCloud(String name,
List<? extends DockerTemplate> templates,
String serverUrl,
String containerCapStr,
int connectTimeout,
int readTimeout,
String credentialsId,
String version) {
super(name);

Preconditions.checkNotNull(serverUrl);
Expand Down

0 comments on commit 5483fee

Please sign in to comment.