You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Narendhiran K (JIRA)" <ji...@apache.org> on 2015/04/09 14:12:12 UTC

[jira] [Issue Comment Deleted] (LANG-1106) StringUtils equals() method produces wrong result for the below scenario

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

Narendhiran K updated LANG-1106:
--------------------------------
    Comment: was deleted

(was: I have checked with "org.apache.commons.lang3.StringUtils" class for the equals method. It produces wrong results.
please find the logic which is present in the "org.apache.commons.lang3.StringUtils" class and try it.

package org.apache.commons.lang3;
 public static boolean equals(CharSequence cs1, CharSequence cs2)
  {
    return cs1 == null ? false : cs2 == null ? true : cs1.equals(cs2);
  }

If cs2 is null, the above logic returns "true", that means it doesn't produce correct result.)

> StringUtils equals() method produces wrong result for the below scenario
> ------------------------------------------------------------------------
>
>                 Key: LANG-1106
>                 URL: https://issues.apache.org/jira/browse/LANG-1106
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.*
>    Affects Versions: 2.6, 3.3.2
>         Environment: java version "1.7.0_02"
> Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
> windows 7
>            Reporter: Narendhiran K
>              Labels: bug
>
> When we use StringUtils equals() method with below scenario, it returns wrong results.
> Scenario : StringUtils.equals("someStr", null);
> Result : true
> Expected result : false
> Explanation:
> Some logical / typo mistake on the below line.
> return ((str1 == null) ? false : (str2 == null) ? true : str1.equals(str2));
> Instead of "true" it should be "false", when str2 is checked.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)