ASF Bugzilla – Attachment 29808 Details for
Bug 54370
NPE mapping method in EL
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
Patch
file_54370.txt (text/plain), 735 bytes, created by
Remy Maucherat
on 2013-01-03 14:20:38 UTC
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Remy Maucherat
Created:
2013-01-03 14:20:38 UTC
Size:
735 bytes
patch
obsolete
>Index: java/org/apache/el/util/ReflectionUtil.java >=================================================================== >--- java/org/apache/el/util/ReflectionUtil.java (revision 1428352) >+++ java/org/apache/el/util/ReflectionUtil.java (working copy) >@@ -162,7 +162,7 @@ > boolean noMatch = false; > for (int i = 0; i < mParamCount; i++) { > // Can't be null >- if (mParamTypes[i].equals(paramTypes[i])) { >+ if (paramTypes[i] == null || mParamTypes[i].equals(paramTypes[i])) { > exactMatch++; > } else if (i == (mParamCount - 1) && m.isVarArgs()) { > Class<?> varType = mParamTypes[i].getComponentType();
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 54370
: 29808