You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Emmanuel Lecharny (JIRA)" <ji...@apache.org> on 2017/12/26 09:35:00 UTC

[jira] [Resolved] (DIRAPI-303) If and else-if branches has the same condition

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

Emmanuel Lecharny resolved DIRAPI-303.
--------------------------------------
       Resolution: Fixed
    Fix Version/s: 2.0.0

Fixed with commit 72af649a9a1e786e6f82535b8c617027199751f1

> If and else-if branches has the same condition
> ----------------------------------------------
>
>                 Key: DIRAPI-303
>                 URL: https://issues.apache.org/jira/browse/DIRAPI-303
>             Project: Directory Client API
>          Issue Type: Bug
>    Affects Versions: 1.0.0-RC2
>            Reporter: songwanging
>             Fix For: 2.0.0
>
>
> Our tool DeepTect has detected a piece of buggy code snippet, in which the if and else branches has the same condition.
> Path: directory-ldap-api/util/src/main/java/org/apache/directory/api/util/Unicode.java
> {code:java}
> public static char bytesToChar( byte[] bytes, int pos ){
> ...
>    else if ( ( bytes[pos] & UTF8_FIVE_BYTES_MASK ) == UTF8_FIVE_BYTES ){
>              // Five bytes char
>              ...
>     }
>    else if ( ( bytes[pos] & UTF8_FIVE_BYTES_MASK ) == UTF8_FIVE_BYTES ){
>                 // Six bytes char
>                  ...
>             }
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)