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

Matt Benson updated JXPATH-106:
-------------------------------

        Fix Version/s: 1.3
    Affects Version/s: Nightly Builds

> Typo in JXPathException.getMessage()
> ------------------------------------
>
>                 Key: JXPATH-106
>                 URL: https://issues.apache.org/jira/browse/JXPATH-106
>             Project: Commons JXPath
>          Issue Type: Bug
>    Affects Versions: Nightly Builds
>         Environment: ALL
>            Reporter: Michele Vivoda
>            Priority: Minor
>             Fix For: 1.3
>
>
> In JXPathException, method getMessage():
>         if (message == null) {
>             buf.append(message).append("; ");
>         }
>         
> Should probably be 
>         if (message != null) {
>             buf.append(message).append("; ");
>         }
>  
> I am running findbugs on the project.       

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

Reply via email to