[ 
https://issues.apache.org/jira/browse/FLINK-22679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Flink Jira Bot updated FLINK-22679:
-----------------------------------
      Labels: auto-deprioritized-minor pull-request-available  (was: 
auto-deprioritized-minor pull-request-available stale-minor)
    Priority: Not a Priority  (was: Minor)

This issue was labeled "stale-minor" 7 days ago and has not received any 
updates so it is being deprioritized. If this ticket is actually Minor, please 
raise the priority and ask a committer to assign you the issue or revive the 
public discussion.


>  code optimization:Transformation.equals
> ----------------------------------------
>
>                 Key: FLINK-22679
>                 URL: https://issues.apache.org/jira/browse/FLINK-22679
>             Project: Flink
>          Issue Type: Improvement
>          Components: API / DataStream
>    Affects Versions: 1.13.0
>            Reporter: huzeming
>            Priority: Not a Priority
>              Labels: auto-deprioritized-minor, pull-request-available
>
> code optimization:Transformation.equals , line : 550
> {code:java}
> // old
> return outputType != null ? outputType.equals(that.outputType) : 
> that.outputType == null;
> // new 
> return Objects.equals(outputType, that.outputType);{code}
> I think after change  it will be more readable



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to