mirror of https://github.com/apache/jclouds.git
Enforce that all commas have trailing whitespace
This commit is contained in:
parent
aef9fc8d83
commit
2d88f5164e
|
@ -60,8 +60,8 @@ public class PasswordAuthenticationExpectTest extends BaseCloudStackExpectTest<A
|
|||
HttpResponse.builder()
|
||||
.statusCode(200)
|
||||
.payload(payloadFromResource("/listaccountsresponse.json"))
|
||||
.build()
|
||||
,logout, logoutResponse);
|
||||
.build(),
|
||||
logout, logoutResponse);
|
||||
|
||||
assertNotNull(client.listAccounts());
|
||||
}
|
||||
|
|
|
@ -495,13 +495,13 @@ public class TemplateBuilderImpl implements TemplateBuilder {
|
|||
.compare(left.getName(), right.getName(), Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getVersion(), right.getVersion(), Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getDescription(), right.getDescription(), Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getOperatingSystem().getName(), right.getOperatingSystem().getName(),//
|
||||
.compare(left.getOperatingSystem().getName(), right.getOperatingSystem().getName(),
|
||||
Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getOperatingSystem().getVersion(), right.getOperatingSystem().getVersion(),//
|
||||
.compare(left.getOperatingSystem().getVersion(), right.getOperatingSystem().getVersion(),
|
||||
Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getOperatingSystem().getDescription(), right.getOperatingSystem().getDescription(),//
|
||||
.compare(left.getOperatingSystem().getDescription(), right.getOperatingSystem().getDescription(),
|
||||
Ordering.<String> natural().nullsLast())
|
||||
.compare(left.getOperatingSystem().getArch(), right.getOperatingSystem().getArch(),//
|
||||
.compare(left.getOperatingSystem().getArch(), right.getOperatingSystem().getArch(),
|
||||
Ordering.<String> natural().nullsLast()).result();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1119,7 +1119,7 @@ public class RestAnnotationProcessorTest extends BaseRestApiTest {
|
|||
ImmutableList.<Object> of("foobledata")));
|
||||
assertRequestLineEquals(httpRequest, "POST http://localhost:9999 HTTP/1.1");
|
||||
assertNonPayloadHeadersEqual(httpRequest, "");
|
||||
assertPayloadEquals(httpRequest,//
|
||||
assertPayloadEquals(httpRequest,
|
||||
"----JCLOUDS--\r\n" + //
|
||||
"Content-Disposition: form-data; name=\"fooble\"\r\n" + //
|
||||
"\r\n" + //
|
||||
|
@ -1140,7 +1140,7 @@ public class RestAnnotationProcessorTest extends BaseRestApiTest {
|
|||
ImmutableList.<Object> of("name", "foobledata")));
|
||||
assertRequestLineEquals(httpRequest, "POST http://localhost:9999 HTTP/1.1");
|
||||
assertNonPayloadHeadersEqual(httpRequest, "");
|
||||
assertPayloadEquals(httpRequest,//
|
||||
assertPayloadEquals(httpRequest,
|
||||
"----JCLOUDS--\r\n" + //
|
||||
"Content-Disposition: form-data; name=\"name\"\r\n" + //
|
||||
"\r\n" + //
|
||||
|
@ -1170,7 +1170,7 @@ public class RestAnnotationProcessorTest extends BaseRestApiTest {
|
|||
ImmutableList.<Object> of("name", file)));
|
||||
assertRequestLineEquals(httpRequest, "POST http://localhost:9999 HTTP/1.1");
|
||||
assertNonPayloadHeadersEqual(httpRequest, "");
|
||||
assertPayloadEquals(httpRequest,//
|
||||
assertPayloadEquals(httpRequest,
|
||||
"----JCLOUDS--\r\n" + //
|
||||
"Content-Disposition: form-data; name=\"name\"\r\n" + //
|
||||
"\r\n" + //
|
||||
|
@ -1189,7 +1189,7 @@ public class RestAnnotationProcessorTest extends BaseRestApiTest {
|
|||
ImmutableList.<Object> of("name", "goo".getBytes())));
|
||||
assertRequestLineEquals(httpRequest, "POST http://localhost:9999 HTTP/1.1");
|
||||
assertNonPayloadHeadersEqual(httpRequest, "");
|
||||
assertPayloadEquals(httpRequest,//
|
||||
assertPayloadEquals(httpRequest,
|
||||
"----JCLOUDS--\r\n" + //
|
||||
"Content-Disposition: form-data; name=\"name\"\r\n" + //
|
||||
"\r\n" + //
|
||||
|
@ -1213,7 +1213,7 @@ public class RestAnnotationProcessorTest extends BaseRestApiTest {
|
|||
ImmutableList.<Object> of("name", file)));
|
||||
assertRequestLineEquals(httpRequest, "POST http://localhost:9999 HTTP/1.1");
|
||||
assertNonPayloadHeadersEqual(httpRequest, "");
|
||||
assertPayloadEquals(httpRequest,//
|
||||
assertPayloadEquals(httpRequest,
|
||||
"----JCLOUDS--\r\n" + //
|
||||
"Content-Disposition: form-data; name=\"name\"\r\n" + //
|
||||
"\r\n" + //
|
||||
|
|
|
@ -106,7 +106,7 @@ public class AWSRunningInstanceToNodeMetadataTest {
|
|||
.tag("Name", "foo")
|
||||
.tag("Empty", "")
|
||||
.hypervisor(Hypervisor.XEN)
|
||||
.build(),//
|
||||
.build(),
|
||||
new AWSRunningInstance.Builder()
|
||||
.region(defaultRegion)
|
||||
.instanceId("i-931444f2")
|
||||
|
|
|
@ -43,6 +43,9 @@
|
|||
<module name="SimplifyBooleanExpression"/>
|
||||
<module name="UnnecessaryParentheses"/>
|
||||
<module name="UnusedImports"/>
|
||||
<module name="WhitespaceAfter">
|
||||
<property name="tokens" value="COMMA"/>
|
||||
</module>
|
||||
</module>
|
||||
<module name="RegexpMultiline">
|
||||
<property name="format" value="=\s*new ArrayList<[^>]"/>
|
||||
|
|
Loading…
Reference in New Issue