Removed unnecessary type reference
This commit is contained in:
@@ -1021,8 +1021,7 @@ public class DeploymentManagementTest extends AbstractIntegrationTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static class EventHandlerMock {
|
private static class EventHandlerMock {
|
||||||
private final List<TargetAssignDistributionSetEvent> events = Collections
|
private final List<TargetAssignDistributionSetEvent> events = Collections.synchronizedList(new LinkedList<>());
|
||||||
.synchronizedList(new LinkedList<TargetAssignDistributionSetEvent>());
|
|
||||||
private final CountDownLatch latch;
|
private final CountDownLatch latch;
|
||||||
private final int expectedNumberOfEvents;
|
private final int expectedNumberOfEvents;
|
||||||
|
|
||||||
@@ -1050,8 +1049,7 @@ public class DeploymentManagementTest extends AbstractIntegrationTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static class CancelEventHandlerMock {
|
private static class CancelEventHandlerMock {
|
||||||
private final List<CancelTargetAssignmentEvent> events = Collections
|
private final List<CancelTargetAssignmentEvent> events = Collections.synchronizedList(new LinkedList<>());
|
||||||
.synchronizedList(new LinkedList<CancelTargetAssignmentEvent>());
|
|
||||||
private final CountDownLatch latch;
|
private final CountDownLatch latch;
|
||||||
private final int expectedNumberOfEvents;
|
private final int expectedNumberOfEvents;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user