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

Xintong Song closed FLINK-22409.
--------------------------------
    Fix Version/s:     (was: 1.13.0)
       Resolution: Fixed

Fixed via
* master (1.14): 59cb0b43f867acfe00a4cac97ab1fe6551857c64

> Rename ResourceProfile class throwUnsupportedOperationExecptionIfUnknown 
> method
> -------------------------------------------------------------------------------
>
>                 Key: FLINK-22409
>                 URL: https://issues.apache.org/jira/browse/FLINK-22409
>             Project: Flink
>          Issue Type: Improvement
>          Components: Runtime / Task
>    Affects Versions: 1.12.2
>            Reporter: simenliuxing
>            Assignee: simenliuxing
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 1.14.0
>
>
> throwUnsupportedOperationExecptionIfUnknown method has a mistake name. It 
> should be 'throwUnsupportedOperationExceptionIfUnknown' , and All other 
> references to this method are changed to 
> 'throwUnsupportedOperationExceptionIfUnknown' . 
> {code:java}
> // mistake name.
> private void throwUnsupportedOperationExecptionIfUnknown() {
>     if (this.equals(UNKNOWN)) {
>         throw new UnsupportedOperationException();
>     }
> }
> // new
> private void throwUnsupportedOperationExceptionIfUnknown() {
>     if (this.equals(UNKNOWN)) {
>         throw new UnsupportedOperationException();
>     }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to