[
https://issues.apache.org/jira/browse/LANG-1106?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14487410#comment-14487410
]
Narendhiran K edited comment on LANG-1106 at 4/9/15 2:24 PM:
-------------------------------------------------------------
Sorry Benedikt.. I was checking version 3.3 , my mistake.. got it.. thanks for
your time :)
was (Author: naren_k):
Sorry Benedikt.. I was checking till version 3.3 , my mistake.. got it.. thanks
for your time :)
> 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)