You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2019/07/01 11:43:00 UTC

[jira] [Updated] (FLINK-13043) Fix the bug of parsing Dewey number from string

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

ASF GitHub Bot updated FLINK-13043:
-----------------------------------
    Labels: pull-request-available  (was: )

> Fix the bug of parsing Dewey number from string
> -----------------------------------------------
>
>                 Key: FLINK-13043
>                 URL: https://issues.apache.org/jira/browse/FLINK-13043
>             Project: Flink
>          Issue Type: Bug
>          Components: Library / CEP
>            Reporter: Liya Fan
>            Assignee: Liya Fan
>            Priority: Trivial
>              Labels: pull-request-available
>
> There is a bug in the current implementation for parsing the Dewey number:
>  
> String[] splits = deweyNumberString.split("\\.");
> if (splits.length == 0) {
>  return new DeweyNumber(Integer.parseInt(deweyNumberString));
>  }
>  
> The length in the if condition should be 1 instead of 0.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)