You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2008/11/06 21:30:49 UTC

[jira] Commented: (LANG-468) JDK 1.5 build/runtime failure on LANG-393 (EqualsBuilder)

    [ https://issues.apache.org/jira/browse/LANG-468?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12645568#action_12645568 ] 

Henri Yandell commented on LANG-468:
------------------------------------

(From LANG-464)

Line 381 of org.apache.commons.lang.EqualsBuilder fails to compile because the compareTo call requires a BigDecimal rather than an object.

376 public EqualsBuilder append(Object lhs, Object rhs) {
...
379 if (!lhsClass.isArray()) {
380 if (lhs instanceof java.math.BigDecimal) { 381 isEquals = (((java.math.BigDecimal)lhs).compareTo(rhs) == 0); 382 } else {

I'm using Sun's JDK 1.6.0_07 in Eclipse, not sure if this is a JDK version issue or not.

> JDK 1.5 build/runtime failure on LANG-393 (EqualsBuilder)
> ---------------------------------------------------------
>
>                 Key: LANG-468
>                 URL: https://issues.apache.org/jira/browse/LANG-468
>             Project: Commons Lang
>          Issue Type: Bug
>    Affects Versions: 2.4
>            Reporter: Henri Yandell
>             Fix For: 3.0
>
>
> See LANG-393

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.