Typo in JXPathException.getMessage()
------------------------------------

                 Key: JXPATH-106
                 URL: https://issues.apache.org/jira/browse/JXPATH-106
             Project: Commons JXPath
          Issue Type: Bug
         Environment: ALL
            Reporter: Michele Vivoda
            Priority: Minor


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