aboutsummaryrefslogtreecommitdiff
path: root/interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java')
-rw-r--r--interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java b/interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java
index 544994695..ac724f618 100644
--- a/interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java
+++ b/interop-testing/src/main/java/io/grpc/testing/integration/AbstractInteropTest.java
@@ -824,7 +824,7 @@ public abstract class AbstractInteropTest {
final int numRequests = 10;
List<StreamingOutputCallRequest> requests =
- new ArrayList<StreamingOutputCallRequest>(numRequests);
+ new ArrayList<>(numRequests);
for (int ix = numRequests; ix > 0; --ix) {
requests.add(request);
requestStream.onNext(request);
@@ -863,7 +863,7 @@ public abstract class AbstractInteropTest {
final int numRequests = 10;
List<StreamingOutputCallRequest> requests =
- new ArrayList<StreamingOutputCallRequest>(numRequests);
+ new ArrayList<>(numRequests);
for (int ix = numRequests; ix > 0; --ix) {
requests.add(request);
requestStream.onNext(request);
@@ -1030,7 +1030,7 @@ public abstract class AbstractInteropTest {
final int numRequests = 10;
List<StreamingOutputCallRequest> requests =
- new ArrayList<StreamingOutputCallRequest>(numRequests);
+ new ArrayList<>(numRequests);
for (int ix = numRequests; ix > 0; --ix) {
requests.add(request);