[ 
https://issues.apache.org/jira/browse/LANG-1544?focusedWorklogId=460753&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-460753
 ]

ASF GitHub Bot logged work on LANG-1544:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 18/Jul/20 21:18
            Start Date: 18/Jul/20 21:18
    Worklog Time Spent: 10m 
      Work Description: coveralls commented on pull request #583:
URL: https://github.com/apache/commons-lang/pull/583#issuecomment-660543925


   
   [![Coverage 
Status](https://coveralls.io/builds/32167532/badge)](https://coveralls.io/builds/32167532)
   
   Coverage decreased (-0.006%) to 94.657% when pulling 
**ece3edaf0d7777355447466d3eafe24436f4f4c3 on 
pixelr:LANG-1544-NPEFixMethodUtils** into 
**031c1d0b8c5c183cda8de2cf20cbd3a2ae662dc7 on apache:master**.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 460753)
    Time Spent: 20m  (was: 10m)

> MethodUtils.invokeMethod NullPointerException in case of null in args list
> --------------------------------------------------------------------------
>
>                 Key: LANG-1544
>                 URL: https://issues.apache.org/jira/browse/LANG-1544
>             Project: Commons Lang
>          Issue Type: Bug
>          Components: lang.reflect.*
>    Affects Versions: 3.10
>            Reporter: Peter Nagy
>            Priority: Critical
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> MethodUtils:774
>  
> if (classArray[offset].equals(toClassArray[offset])) {
>  continue;
> } else if (ClassUtils.isAssignable(classArray[offset], toClassArray[offset], 
> true)
>  
> cause NPE if classArray[offset] is null. Can you please extend the if 
> condition with a null check, like this?
>  
> if (classArray[offset] != null && 
> classArray[offset].equals(toClassArray[offset]))



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to