!str #17039 change default materialization placeholder type from Unit to Any
This commit is contained in:
parent
52117b9020
commit
85c0571620
11 changed files with 51 additions and 54 deletions
|
|
@ -66,10 +66,10 @@ public class FlowGraphTest extends StreamTest {
|
|||
.of(String.class)
|
||||
.section(
|
||||
OperationAttributes.name("f1"),
|
||||
new Function<Flow<String, String, BoxedUnit>, Flow<String, String, BoxedUnit>>() {
|
||||
new Function<Flow<String, String, Object>, Flow<String, String, Object>>() {
|
||||
@Override
|
||||
public Flow<String, String, BoxedUnit> apply(
|
||||
Flow<String, String, BoxedUnit> flow) {
|
||||
public Flow<String, String, Object> apply(
|
||||
Flow<String, String, Object> flow) {
|
||||
return flow.transform(FlowGraphTest.this.<String> op());
|
||||
}
|
||||
});
|
||||
|
|
@ -77,10 +77,10 @@ public class FlowGraphTest extends StreamTest {
|
|||
.of(String.class)
|
||||
.section(
|
||||
OperationAttributes.name("f2"),
|
||||
new Function<Flow<String, String, BoxedUnit>, Flow<String, String, BoxedUnit>>() {
|
||||
new Function<Flow<String, String, Object>, Flow<String, String, Object>>() {
|
||||
@Override
|
||||
public Flow<String, String, BoxedUnit> apply(
|
||||
Flow<String, String, BoxedUnit> flow) {
|
||||
public Flow<String, String, Object> apply(
|
||||
Flow<String, String, Object> flow) {
|
||||
return flow.transform(FlowGraphTest.this.<String> op());
|
||||
}
|
||||
});
|
||||
|
|
@ -88,10 +88,10 @@ public class FlowGraphTest extends StreamTest {
|
|||
.of(String.class)
|
||||
.section(
|
||||
OperationAttributes.name("f3"),
|
||||
new Function<Flow<String, String, BoxedUnit>, Flow<String, String, BoxedUnit>>() {
|
||||
new Function<Flow<String, String, Object>, Flow<String, String, Object>>() {
|
||||
@Override
|
||||
public Flow<String, String, BoxedUnit> apply(
|
||||
Flow<String, String, BoxedUnit> flow) {
|
||||
public Flow<String, String, Object> apply(
|
||||
Flow<String, String, Object> flow) {
|
||||
return flow.transform(FlowGraphTest.this.<String> op());
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue