--- a/test/jdk/java/net/httpclient/FlowAdapterSubscriberTest.java Thu Feb 22 12:23:53 2018 +0000
+++ b/test/jdk/java/net/httpclient/FlowAdapterSubscriberTest.java Thu Feb 22 14:58:11 2018 +0000
@@ -289,7 +289,7 @@
}
@Test(dataProvider = "uris")
- void testIterableWithoutFinisherBlocking(String url) throws Exception{
+ void testIterableWithoutFinisherBlocking(String url) throws Exception {
HttpClient client = HttpClient.newBuilder().sslContext(sslContext).build();
HttpRequest request = HttpRequest.newBuilder(URI.create(url))
.POST(fromString("We're sucking diesel now!")).build();
@@ -369,7 +369,7 @@
// -- mapping using convenience handlers
@Test(dataProvider = "uris")
- void mappingFromByteArray(String url) throws Exception{
+ void mappingFromByteArray(String url) throws Exception {
HttpClient client = HttpClient.newBuilder().sslContext(sslContext).build();
HttpRequest request = HttpRequest.newBuilder(URI.create(url))
.POST(fromString("We're sucking diesel now!")).build();
@@ -383,7 +383,7 @@
}
@Test(dataProvider = "uris")
- void mappingFromInputStream(String url) throws Exception{
+ void mappingFromInputStream(String url) throws Exception {
HttpClient client = HttpClient.newBuilder().sslContext(sslContext).build();
HttpRequest request = HttpRequest.newBuilder(URI.create(url))
.POST(fromString("May the wind always be at your back.")).build();
--- a/test/jdk/java/net/httpclient/FlowAdaptersCompileOnly.java Thu Feb 22 12:23:53 2018 +0000
+++ b/test/jdk/java/net/httpclient/FlowAdaptersCompileOnly.java Thu Feb 22 14:58:11 2018 +0000
@@ -178,7 +178,7 @@
static final Function<NumberSubscriber,Number> numMapper = sub -> sub.getNumber();
static final Function<IntegerSubscriber,Integer> intMapper = sub -> sub.getInteger();
static final Function<LongSubscriber,Long> longMapper = sub -> sub.getLong();
-
+
public void makesSureDifferentGenericSubscriberSignaturesCompile()
throws Exception
{