loniecc opened a new pull request #15933:
URL: https://github.com/apache/flink/pull/15933


   optimize equal method
   from 
   `return outputType != null ? outputType.equals(that.outputType) : 
that.outputType == null;`
   to
   `return Objects.equals(outputType, that.outputType);`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to