You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Sebb (JIRA)" <ji...@apache.org> on 2010/01/27 16:40:34 UTC

[jira] Created: (MATH-336) Unnecessary null checks in equals methods

Unnecessary null checks in equals methods
-----------------------------------------

                 Key: MATH-336
                 URL: https://issues.apache.org/jira/browse/MATH-336
             Project: Commons Math
          Issue Type: Improvement
            Reporter: Sebb
            Priority: Minor


Many of the equals() methods have code like the following:

{code}
if (obj == null) {
    return false;
}
if (!(obj instanceof OpenMapRealVector)) {
    return false;
}
{code}

The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.



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


[jira] Closed: (MATH-336) Unnecessary null checks in equals methods

Posted by "Phil Steitz (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Phil Steitz closed MATH-336.
----------------------------


> Unnecessary null checks in equals methods
> -----------------------------------------
>
>                 Key: MATH-336
>                 URL: https://issues.apache.org/jira/browse/MATH-336
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> Many of the equals() methods have code like the following:
> {code}
> if (obj == null) {
>     return false;
> }
> if (!(obj instanceof OpenMapRealVector)) {
>     return false;
> }
> {code}
> The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.

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


[jira] Resolved: (MATH-336) Unnecessary null checks in equals methods

Posted by "Sebb (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb resolved MATH-336.
-----------------------

    Resolution: Fixed

URL: http://svn.apache.org/viewvc?rev=922714&view=rev
Log:
MATH-336 Unnecessary null checks in equals methods

Modified:
   commons/proper/math/trunk/src/main/java/org/apache/commons/math/analysis/polynomials/PolynomialFunction.java
   commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/OpenMapRealVector.java
   commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SparseFieldVector.java
   commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/moment/VectorialCovariance.java
   commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/descriptive/moment/VectorialMean.java

> Unnecessary null checks in equals methods
> -----------------------------------------
>
>                 Key: MATH-336
>                 URL: https://issues.apache.org/jira/browse/MATH-336
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> Many of the equals() methods have code like the following:
> {code}
> if (obj == null) {
>     return false;
> }
> if (!(obj instanceof OpenMapRealVector)) {
>     return false;
> }
> {code}
> The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.

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


[jira] Updated: (MATH-336) Unnecessary null checks in equals methods

Posted by "Phil Steitz (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Phil Steitz updated MATH-336:
-----------------------------

    Fix Version/s: 2.1

> Unnecessary null checks in equals methods
> -----------------------------------------
>
>                 Key: MATH-336
>                 URL: https://issues.apache.org/jira/browse/MATH-336
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> Many of the equals() methods have code like the following:
> {code}
> if (obj == null) {
>     return false;
> }
> if (!(obj instanceof OpenMapRealVector)) {
>     return false;
> }
> {code}
> The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.

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


[jira] Reopened: (MATH-336) Unnecessary null checks in equals methods

Posted by "Sebb (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb reopened MATH-336:
-----------------------


Oops - only some of the instances were fixed as part of MATH-337

> Unnecessary null checks in equals methods
> -----------------------------------------
>
>                 Key: MATH-336
>                 URL: https://issues.apache.org/jira/browse/MATH-336
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> Many of the equals() methods have code like the following:
> {code}
> if (obj == null) {
>     return false;
> }
> if (!(obj instanceof OpenMapRealVector)) {
>     return false;
> }
> {code}
> The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.

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


[jira] Resolved: (MATH-336) Unnecessary null checks in equals methods

Posted by "Sebb (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MATH-336?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb resolved MATH-336.
-----------------------

    Resolution: Fixed

Fixed as part of MATH-337

> Unnecessary null checks in equals methods
> -----------------------------------------
>
>                 Key: MATH-336
>                 URL: https://issues.apache.org/jira/browse/MATH-336
>             Project: Commons Math
>          Issue Type: Improvement
>            Reporter: Sebb
>            Priority: Minor
>             Fix For: 2.1
>
>
> Many of the equals() methods have code like the following:
> {code}
> if (obj == null) {
>     return false;
> }
> if (!(obj instanceof OpenMapRealVector)) {
>     return false;
> }
> {code}
> The null check is redundant, as null would cause the instanceof check to fail anyway, so the null check could just be removed.

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