mirror of
https://github.com/google/nomulus
synced 2026-09-02 06:07:03 +00:00
Convert more @AutoValues to Java records (#2378)
This commit is contained in:
@@ -72,15 +72,15 @@ class BsaDiffCreatorTest {
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(
|
||||
BlockLabel.of("test1", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test2", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test3", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
BlockLabel.create("test1", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test2", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test3", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders())
|
||||
.containsExactly(
|
||||
BlockOrder.of(1, OrderType.CREATE),
|
||||
BlockOrder.of(2, OrderType.CREATE),
|
||||
BlockOrder.of(3, OrderType.CREATE),
|
||||
BlockOrder.of(4, OrderType.CREATE));
|
||||
BlockOrder.create(1, OrderType.CREATE),
|
||||
BlockOrder.create(2, OrderType.CREATE),
|
||||
BlockOrder.create(3, OrderType.CREATE),
|
||||
BlockOrder.create(4, OrderType.CREATE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -96,16 +96,16 @@ class BsaDiffCreatorTest {
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(
|
||||
BlockLabel.of("test1", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test2", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test3", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
BlockLabel.create("test1", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test2", LabelType.CREATE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test3", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders())
|
||||
.containsExactly(
|
||||
BlockOrder.of(1, OrderType.CREATE),
|
||||
BlockOrder.of(2, OrderType.CREATE),
|
||||
BlockOrder.of(3, OrderType.CREATE),
|
||||
BlockOrder.of(4, OrderType.CREATE),
|
||||
BlockOrder.of(5, OrderType.CREATE));
|
||||
BlockOrder.create(1, OrderType.CREATE),
|
||||
BlockOrder.create(2, OrderType.CREATE),
|
||||
BlockOrder.create(3, OrderType.CREATE),
|
||||
BlockOrder.create(4, OrderType.CREATE),
|
||||
BlockOrder.create(5, OrderType.CREATE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -140,15 +140,15 @@ class BsaDiffCreatorTest {
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(
|
||||
BlockLabel.of("test1", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test2", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test3", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
BlockLabel.create("test1", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test2", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test3", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders())
|
||||
.containsExactly(
|
||||
BlockOrder.of(1, OrderType.DELETE),
|
||||
BlockOrder.of(2, OrderType.DELETE),
|
||||
BlockOrder.of(3, OrderType.DELETE),
|
||||
BlockOrder.of(4, OrderType.DELETE));
|
||||
BlockOrder.create(1, OrderType.DELETE),
|
||||
BlockOrder.create(2, OrderType.DELETE),
|
||||
BlockOrder.create(3, OrderType.DELETE),
|
||||
BlockOrder.create(4, OrderType.DELETE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -167,8 +167,8 @@ class BsaDiffCreatorTest {
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(
|
||||
BlockLabel.of("test1", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.of(5, OrderType.CREATE));
|
||||
BlockLabel.create("test1", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.create(5, OrderType.CREATE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -187,8 +187,8 @@ class BsaDiffCreatorTest {
|
||||
when(schedule.latestCompleted()).thenReturn(Optional.of(completedJob));
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(BlockLabel.of("test4", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.of(5, OrderType.CREATE));
|
||||
.containsExactly(BlockLabel.create("test4", LabelType.CREATE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.create(5, OrderType.CREATE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -205,7 +205,7 @@ class BsaDiffCreatorTest {
|
||||
when(schedule.latestCompleted()).thenReturn(Optional.of(completedJob));
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels()).isEmpty();
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.of(4, OrderType.DELETE));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.create(4, OrderType.DELETE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -222,7 +222,7 @@ class BsaDiffCreatorTest {
|
||||
when(schedule.latestCompleted()).thenReturn(Optional.of(completedJob));
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels()).isEmpty();
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.of(1, OrderType.DELETE));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.create(1, OrderType.DELETE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -240,8 +240,8 @@ class BsaDiffCreatorTest {
|
||||
when(schedule.latestCompleted()).thenReturn(Optional.of(completedJob));
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(BlockLabel.of("test2", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.of(3, OrderType.DELETE));
|
||||
.containsExactly(BlockLabel.create("test2", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders()).containsExactly(BlockOrder.create(3, OrderType.DELETE));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -260,13 +260,13 @@ class BsaDiffCreatorTest {
|
||||
BsaDiff diff = diffCreator.createDiff(schedule, idnChecker);
|
||||
assertThat(diff.getLabels())
|
||||
.containsExactly(
|
||||
BlockLabel.of("test1", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("test3", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
BlockLabel.create("test1", LabelType.DELETE, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("test3", LabelType.DELETE, ImmutableSet.of("JA")));
|
||||
assertThat(diff.getOrders())
|
||||
.containsExactly(
|
||||
BlockOrder.of(1, OrderType.DELETE),
|
||||
BlockOrder.of(2, OrderType.DELETE),
|
||||
BlockOrder.of(4, OrderType.DELETE));
|
||||
BlockOrder.create(1, OrderType.DELETE),
|
||||
BlockOrder.create(2, OrderType.DELETE),
|
||||
BlockOrder.create(4, OrderType.DELETE));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -144,7 +144,7 @@ class BsaRefreshFunctionalTest {
|
||||
UnblockableDomain newUnblockable = new UnblockableDomain("blocked1.app", Reason.RESERVED);
|
||||
assertThat(queryUnblockableDomains()).containsExactly(newUnblockable);
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(UnblockableDomainChange.ofNew(newUnblockable));
|
||||
.containsExactly(UnblockableDomainChange.createNew(newUnblockable));
|
||||
verify(bsaReportSender, never()).removeUnblockableDomainsUpdates(anyString());
|
||||
verify(bsaReportSender, times(1))
|
||||
.addUnblockableDomainsUpdates("{\n \"reserved\": [\n \"blocked1.app\"\n ]\n}");
|
||||
@@ -161,7 +161,7 @@ class BsaRefreshFunctionalTest {
|
||||
UnblockableDomain newUnblockable = new UnblockableDomain("blocked1.dev", Reason.REGISTERED);
|
||||
assertThat(queryUnblockableDomains()).containsExactly(newUnblockable);
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(UnblockableDomainChange.ofNew(newUnblockable));
|
||||
.containsExactly(UnblockableDomainChange.createNew(newUnblockable));
|
||||
|
||||
verify(bsaReportSender, never()).removeUnblockableDomainsUpdates(anyString());
|
||||
verify(bsaReportSender, times(1))
|
||||
@@ -184,7 +184,7 @@ class BsaRefreshFunctionalTest {
|
||||
assertThat(queryUnblockableDomains()).isEmpty();
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofDeleted(
|
||||
UnblockableDomainChange.createDeleted(
|
||||
new UnblockableDomain("blocked1.dev", Reason.REGISTERED)));
|
||||
|
||||
verify(bsaReportSender, never()).addUnblockableDomainsUpdates(anyString());
|
||||
@@ -207,7 +207,7 @@ class BsaRefreshFunctionalTest {
|
||||
assertThat(queryUnblockableDomains()).isEmpty();
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofDeleted(
|
||||
UnblockableDomainChange.createDeleted(
|
||||
new UnblockableDomain("blocked1.app", Reason.RESERVED)));
|
||||
|
||||
verify(bsaReportSender, never()).addUnblockableDomainsUpdates(anyString());
|
||||
@@ -233,7 +233,7 @@ class BsaRefreshFunctionalTest {
|
||||
.containsExactly(new UnblockableDomain("blocked1.app", Reason.RESERVED));
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofChanged(
|
||||
UnblockableDomainChange.createChanged(
|
||||
new UnblockableDomain("blocked1.app", Reason.REGISTERED), Reason.RESERVED));
|
||||
InOrder inOrder = Mockito.inOrder(bsaReportSender);
|
||||
inOrder.verify(bsaReportSender).removeUnblockableDomainsUpdates("[\n \"blocked1.app\"\n]");
|
||||
@@ -260,7 +260,7 @@ class BsaRefreshFunctionalTest {
|
||||
assertThat(queryUnblockableDomains()).containsExactly(changed);
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofChanged(
|
||||
UnblockableDomainChange.createChanged(
|
||||
new UnblockableDomain("blocked1.app", Reason.RESERVED), Reason.REGISTERED));
|
||||
InOrder inOrder = Mockito.inOrder(bsaReportSender);
|
||||
inOrder.verify(bsaReportSender).removeUnblockableDomainsUpdates("[\n \"blocked1.app\"\n]");
|
||||
@@ -279,7 +279,7 @@ class BsaRefreshFunctionalTest {
|
||||
UnblockableDomain newUnblockable = new UnblockableDomain("blocked1.app", Reason.REGISTERED);
|
||||
assertThat(queryUnblockableDomains()).containsExactly(newUnblockable);
|
||||
assertThat(gcsClient.readRefreshChanges(jobName))
|
||||
.containsExactly(UnblockableDomainChange.ofNew(newUnblockable));
|
||||
.containsExactly(UnblockableDomainChange.createNew(newUnblockable));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -79,7 +79,8 @@ class GcsClientTest {
|
||||
@Test
|
||||
void readWriteOrderDiffs_success() throws Exception {
|
||||
ImmutableList<BlockOrder> orders =
|
||||
ImmutableList.of(BlockOrder.of(1, OrderType.CREATE), BlockOrder.of(2, OrderType.DELETE));
|
||||
ImmutableList.of(
|
||||
BlockOrder.create(1, OrderType.CREATE), BlockOrder.create(2, OrderType.DELETE));
|
||||
gcsClient.writeOrderDiffs("job", orders.stream());
|
||||
assertThat(gcsClient.readOrderDiffs("job")).containsExactlyElementsIn(orders);
|
||||
}
|
||||
@@ -88,9 +89,9 @@ class GcsClientTest {
|
||||
void readWriteLabelDiffs_success() throws Exception {
|
||||
ImmutableList<BlockLabel> labels =
|
||||
ImmutableList.of(
|
||||
BlockLabel.of("1", LabelType.CREATE.CREATE, ImmutableSet.of()),
|
||||
BlockLabel.of("2", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of("JA")),
|
||||
BlockLabel.of("3", LabelType.DELETE, ImmutableSet.of("JA", "EXTENDED_LATIN")));
|
||||
BlockLabel.create("1", LabelType.CREATE.CREATE, ImmutableSet.of()),
|
||||
BlockLabel.create("2", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of("JA")),
|
||||
BlockLabel.create("3", LabelType.DELETE, ImmutableSet.of("JA", "EXTENDED_LATIN")));
|
||||
gcsClient.writeLabelDiffs("job", labels.stream());
|
||||
assertThat(gcsClient.readLabelDiffs("job")).containsExactlyElementsIn(labels);
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ class BlockLabelTest {
|
||||
|
||||
@BeforeEach
|
||||
void setup() {
|
||||
label = BlockLabel.of("buy", LabelType.CREATE, ImmutableSet.of("JA", "EXTENDED_LATIN"));
|
||||
label = BlockLabel.create("buy", LabelType.CREATE, ImmutableSet.of("JA", "EXTENDED_LATIN"));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -43,7 +43,7 @@ class BlockLabelTest {
|
||||
|
||||
@Test
|
||||
void emptyIdns() {
|
||||
label = BlockLabel.of("buy", LabelType.CREATE, ImmutableSet.of());
|
||||
label = BlockLabel.create("buy", LabelType.CREATE, ImmutableSet.of());
|
||||
assertThat(label.serialize()).isEqualTo("buy,CREATE");
|
||||
assertThat(BlockLabel.deserialize("buy,CREATE")).isEqualTo(label);
|
||||
}
|
||||
|
||||
@@ -27,7 +27,7 @@ class BlockOrderTest {
|
||||
|
||||
@BeforeEach
|
||||
void setup() {
|
||||
order = BlockOrder.of(123, OrderType.CREATE);
|
||||
order = BlockOrder.create(123, OrderType.CREATE);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
@@ -44,7 +44,7 @@ class JsonSerializationsTest {
|
||||
" \"status\": \"ActivationInProgress\"",
|
||||
" }",
|
||||
"]"));
|
||||
assertThat(toInProgressOrdersReport(Stream.of(BlockOrder.of(1, OrderType.CREATE))))
|
||||
assertThat(toInProgressOrdersReport(Stream.of(BlockOrder.create(1, OrderType.CREATE))))
|
||||
.hasValue(expected);
|
||||
}
|
||||
|
||||
@@ -66,7 +66,9 @@ class JsonSerializationsTest {
|
||||
"]"));
|
||||
assertThat(
|
||||
toInProgressOrdersReport(
|
||||
Stream.of(BlockOrder.of(1, OrderType.CREATE), BlockOrder.of(2, OrderType.DELETE))))
|
||||
Stream.of(
|
||||
BlockOrder.create(1, OrderType.CREATE),
|
||||
BlockOrder.create(2, OrderType.DELETE))))
|
||||
.hasValue(expected);
|
||||
}
|
||||
|
||||
@@ -82,7 +84,7 @@ class JsonSerializationsTest {
|
||||
" \"status\": \"Active\"",
|
||||
" }",
|
||||
"]"));
|
||||
assertThat(toCompletedOrdersReport(Stream.of(BlockOrder.of(1, OrderType.CREATE))))
|
||||
assertThat(toCompletedOrdersReport(Stream.of(BlockOrder.create(1, OrderType.CREATE))))
|
||||
.hasValue(expected);
|
||||
}
|
||||
|
||||
@@ -104,7 +106,9 @@ class JsonSerializationsTest {
|
||||
"]"));
|
||||
assertThat(
|
||||
toCompletedOrdersReport(
|
||||
Stream.of(BlockOrder.of(1, OrderType.CREATE), BlockOrder.of(2, OrderType.DELETE))))
|
||||
Stream.of(
|
||||
BlockOrder.create(1, OrderType.CREATE),
|
||||
BlockOrder.create(2, OrderType.DELETE))))
|
||||
.hasValue(expected);
|
||||
}
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ public class DomainsRefresherTest {
|
||||
tm().transact(() -> tm().insert(BsaUnblockableDomain.of("label.tld", Reason.REGISTERED)));
|
||||
assertThat(refresher.refreshStaleUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofDeleted(
|
||||
UnblockableDomainChange.createDeleted(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.REGISTERED)));
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ public class DomainsRefresherTest {
|
||||
tm().transact(() -> tm().insert(BsaUnblockableDomain.of("label.tld", Reason.RESERVED)));
|
||||
assertThat(refresher.refreshStaleUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofDeleted(
|
||||
UnblockableDomainChange.createDeleted(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.RESERVED)));
|
||||
}
|
||||
|
||||
@@ -88,7 +88,7 @@ public class DomainsRefresherTest {
|
||||
persistBsaLabel("label");
|
||||
assertThat(refresher.getNewUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofNew(
|
||||
UnblockableDomainChange.createNew(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.REGISTERED)));
|
||||
}
|
||||
|
||||
@@ -99,7 +99,7 @@ public class DomainsRefresherTest {
|
||||
addReservedListsToTld("tld", ImmutableList.of("reservedList"));
|
||||
assertThat(refresher.getNewUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofNew(
|
||||
UnblockableDomainChange.createNew(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.RESERVED)));
|
||||
}
|
||||
|
||||
@@ -112,7 +112,7 @@ public class DomainsRefresherTest {
|
||||
|
||||
assertThat(refresher.refreshStaleUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofChanged(
|
||||
UnblockableDomainChange.createChanged(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.REGISTERED),
|
||||
UnblockableDomain.Reason.RESERVED));
|
||||
}
|
||||
@@ -125,7 +125,7 @@ public class DomainsRefresherTest {
|
||||
persistResource(newDomain("label.tld"));
|
||||
assertThat(refresher.refreshStaleUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofChanged(
|
||||
UnblockableDomainChange.createChanged(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.RESERVED),
|
||||
UnblockableDomain.Reason.REGISTERED));
|
||||
}
|
||||
@@ -140,7 +140,7 @@ public class DomainsRefresherTest {
|
||||
persistResource(newDomain("label.tld"));
|
||||
assertThat(refresher.refreshStaleUnblockables())
|
||||
.containsExactly(
|
||||
UnblockableDomainChange.ofChanged(
|
||||
UnblockableDomainChange.createChanged(
|
||||
new UnblockableDomain("label.tld", UnblockableDomain.Reason.RESERVED),
|
||||
UnblockableDomain.Reason.REGISTERED));
|
||||
}
|
||||
|
||||
@@ -94,7 +94,7 @@ class LabelDiffUpdatesTest {
|
||||
|
||||
ImmutableList<UnblockableDomain> unblockableDomains =
|
||||
applyLabelDiff(
|
||||
ImmutableList.of(BlockLabel.of("label", LabelType.DELETE, ImmutableSet.of())),
|
||||
ImmutableList.of(BlockLabel.create("label", LabelType.DELETE, ImmutableSet.of())),
|
||||
idnChecker,
|
||||
schedule,
|
||||
fakeClock.nowUtc());
|
||||
@@ -119,7 +119,7 @@ class LabelDiffUpdatesTest {
|
||||
ImmutableList<UnblockableDomain> unblockableDomains =
|
||||
applyLabelDiff(
|
||||
ImmutableList.of(
|
||||
BlockLabel.of("label", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of())),
|
||||
BlockLabel.create("label", LabelType.NEW_ORDER_ASSOCIATION, ImmutableSet.of())),
|
||||
idnChecker,
|
||||
schedule,
|
||||
fakeClock.nowUtc());
|
||||
@@ -146,7 +146,7 @@ class LabelDiffUpdatesTest {
|
||||
|
||||
ImmutableList<UnblockableDomain> unblockableDomains =
|
||||
applyLabelDiff(
|
||||
ImmutableList.of(BlockLabel.of("label", LabelType.CREATE, ImmutableSet.of())),
|
||||
ImmutableList.of(BlockLabel.create("label", LabelType.CREATE, ImmutableSet.of())),
|
||||
idnChecker,
|
||||
schedule,
|
||||
fakeClock.nowUtc());
|
||||
|
||||
Reference in New Issue
Block a user