Github user apivovarov commented on a diff in the pull request:

    https://github.com/apache/flink/pull/2490#discussion_r78288200
  
    --- Diff: 
flink-java/src/main/java/org/apache/flink/api/java/operators/CrossOperator.java 
---
    @@ -129,14 +129,11 @@ private String getDefaultName() {
     
                public DefaultCross(DataSet<I1> input1, DataSet<I2> input2, 
CrossHint hint, String defaultName) {
                        
    -                   super(input1, input2, new DefaultCrossFunction<I1, 
I2>(),
    +                   super(Preconditions.checkNotNull(input1, "input1 is 
null"),
    --- End diff --
    
    I also added null check to TwoInputOperator
    And removed `input1` and `input2` fields from DefaultCross because 
TwoInputOperator already has them


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to