File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
core/src/test/resources/com/google/googlejavaformat/java/testdata Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ class Test {
5
5
if (!metadata.ignoreOutputTransformations()
6
6
&& Producers.isListenableFutureMapKey(outputKey)) {
7
7
ImmutableList<ProducerNode<?>> nodes = createMapNodes((ProducerNode) node);
8
- checkCollectionNodesAgainstWhitelist (nodes, whitelist );
8
+ checkCollectionNodesAgainstAllowlist (nodes, allowlist );
9
9
return nodes;
10
10
11
11
} else if (!metadata.ignoreOutputTransformations()
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ class Test {
4
4
void m() {
5
5
if (!metadata.ignoreOutputTransformations() && Producers.isListenableFutureMapKey(outputKey)) {
6
6
ImmutableList<ProducerNode<?>> nodes = createMapNodes((ProducerNode) node);
7
- checkCollectionNodesAgainstWhitelist (nodes, whitelist );
7
+ checkCollectionNodesAgainstAllowlist (nodes, allowlist );
8
8
return nodes;
9
9
10
10
} else if (!metadata.ignoreOutputTransformations()
Original file line number Diff line number Diff line change 1
1
class B20701054 {
2
2
void m() {
3
3
ImmutableList<String> x = ImmutableList.builder().add(1).build();
4
- OptionalBinder.<ASD>newOptionalBinder(binder(), InputWhitelist .class).setBinding().to(
5
- AllInputWhitelist .class);
4
+ OptionalBinder.<ASD>newOptionalBinder(binder(), InputAllowlist .class).setBinding().to(
5
+ AllInputAllowlist .class);
6
6
7
7
Foo z = Foo.INSTANCE.field;
8
8
Foo z = Foo.INSTANCE.field.field;
Original file line number Diff line number Diff line change 1
1
class B20701054 {
2
2
void m() {
3
3
ImmutableList<String> x = ImmutableList.builder().add(1).build();
4
- OptionalBinder.<ASD>newOptionalBinder(binder(), InputWhitelist .class)
4
+ OptionalBinder.<ASD>newOptionalBinder(binder(), InputAllowlist .class)
5
5
.setBinding()
6
- .to(AllInputWhitelist .class);
6
+ .to(AllInputAllowlist .class);
7
7
8
8
Foo z = Foo.INSTANCE.field;
9
9
Foo z = Foo.INSTANCE.field.field;
You can’t perform that action at this time.
0 commit comments