| Issue 8: | NPE in ViewBinderGenerator.validateViewInterface | |
| 1 person starred this issue and may be notified of changes. | Back to list |
When return type is JRealClassType - m.getReturnType().isPrimitive() returns null so "if (!m.getReturnType().isPrimitive().equals(JPrimitiveType.VOID))" produces NPE IMHO should be if (m.getReturnType().isPrimitive() == null || !m.getReturnType().isPrimitive().equals(JPrimitiveType.VOID))
Sep 1, 2010
Project Member
#1
gal.dol...@gmail.com
Status:
Fixed
|