[
https://issues.apache.org/jira/browse/UIMA-5308?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marshall Schor updated UIMA-5308:
---------------------------------
Description:
-Marshall ran a code checker (FindBugs?)- Marshall examined the Jenkins build
reports, which included a "PMD" report, which had some "red" notations (more
serious), which found a bug that can cause NPE in ProcessingContainer_Impl.java
in the CPE.
The following :
if (( (filterExpression.getOperand() == null
&& filterExpression.getOperand().getOperand() == null) &&
!exists)
should be:
if (( (filterExpression.getOperand() == null
|| filterExpression.getOperand().getOperand() == null) && !exists)
was:
Marshall ran a code checker (FindBugs?) which found a bug that can cause NPE in
ProcessingContainer_Impl.java in the CPE.
The following :
if (( (filterExpression.getOperand() == null
&& filterExpression.getOperand().getOperand() == null) &&
!exists)
should be:
if (( (filterExpression.getOperand() == null
|| filterExpression.getOperand().getOperand() == null) && !exists)
> Fix potential NPE in ProcessContainer_Impl.java
> -----------------------------------------------
>
> Key: UIMA-5308
> URL: https://issues.apache.org/jira/browse/UIMA-5308
> Project: UIMA
> Issue Type: Bug
> Components: Collection Processing
> Reporter: Jerry Cwiklik
> Assignee: Jerry Cwiklik
> Fix For: 3.0.0SDK-beta, 2.10.0SDK
>
>
> -Marshall ran a code checker (FindBugs?)- Marshall examined the Jenkins build
> reports, which included a "PMD" report, which had some "red" notations (more
> serious), which found a bug that can cause NPE in
> ProcessingContainer_Impl.java in the CPE.
> The following :
> if (( (filterExpression.getOperand() == null
> && filterExpression.getOperand().getOperand() == null) &&
> !exists)
> should be:
>
> if (( (filterExpression.getOperand() == null
> || filterExpression.getOperand().getOperand() == null) &&
> !exists)
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)